E - Complete Compress Editorial /

Time Limit: 3 sec / Memory Limit: 1024 MB

配点 : 1500

問題文

頂点に番号 1, 2, ..., N がついた N 頂点の木が与えられます。i 番目の辺は頂点 a_i と頂点 b_i を結んでいます。 また長さ N0, 1 からなる文字列 S が与えられ、Si 文字目は頂点 i に置いてあるコマの個数を表しています。

すぬけ君は、以下の操作を好きなだけ行います。

  • 距離が 2 以上離れたコマ 2 個を選び、お互いに 1 ずつ近づける。 正確に述べると、コマの置かれた頂点 u, v を選び、u, v 間の最短パスを考える。ここでパスの辺数が 2 以上となるように選ぶことにする。パスにおいて u に隣り合う頂点にコマを 1u から動かし、v に隣り合う頂点にコマを 1v から動かす。

すぬけ君はこれを繰り返し、すべてのコマを同じ頂点に集めたいです。このようなことは可能でしょうか? 可能な場合、それを達成するのに必要な操作の最小回数も求めてください。

制約

  • 2 \leq N \leq 2000
  • |S| = N
  • S0, 1からなり、また少なくとも 1 文字は 1 を含む
  • 1 \leq a_i, b_i \leq N(a_i \neq b_i)
  • (a_1, b_1), (a_2, b_2), ..., (a_{N - 1}, b_{N - 1}) は木をなす

入力

入力は以下の形式で標準入力から与えられる。

N
S
a_1 b_1
a_2 b_2
:
a_{N - 1} b_{N - 1}

出力

コマを同じ頂点に集められない場合 -1、集められる場合は操作の最小回数を出力せよ。


入力例 1

7
0010101
1 2
2 3
1 4
4 5
1 6
6 7

出力例 1

3
  • 頂点 3, 5 のコマを選ぶ
  • 頂点 2, 7 のコマを選ぶ
  • 頂点 4, 6 のコマを選ぶ

3 回の操作ですべてのコマを頂点 1 に集めることができます。


入力例 2

7
0010110
1 2
2 3
1 4
4 5
1 6
6 7

出力例 2

-1

入力例 3

2
01
1 2

出力例 3

0

Score : 1500 points

Problem Statement

You are given a tree with N vertices numbered 1, 2, ..., N. The i-th edge connects Vertex a_i and Vertex b_i. You are also given a string S of length N consisting of 0 and 1. The i-th character of S represents the number of pieces placed on Vertex i.

Snuke will perform the following operation some number of times:

  • Choose two pieces the distance between which is at least 2, and bring these pieces closer to each other by 1. More formally, choose two vertices u and v, each with one or more pieces, and consider the shortest path between them. Here the path must contain at least two edges. Then, move one piece from u to its adjacent vertex on the path, and move one piece from v to its adjacent vertex on the path.

By repeating this operation, Snuke wants to have all the pieces on the same vertex. Is this possible? If the answer is yes, also find the minimum number of operations required to achieve it.

Constraints

  • 2 \leq N \leq 2000
  • |S| = N
  • S consists of 0 and 1, and contains at least one 1.
  • 1 \leq a_i, b_i \leq N(a_i \neq b_i)
  • The edges (a_1, b_1), (a_2, b_2), ..., (a_{N - 1}, b_{N - 1}) forms a tree.

Input

Input is given from Standard Input in the following format:

N
S
a_1 b_1
a_2 b_2
:
a_{N - 1} b_{N - 1}

Output

If it is impossible to have all the pieces on the same vertex, print -1. If it is possible, print the minimum number of operations required.


Sample Input 1

7
0010101
1 2
2 3
1 4
4 5
1 6
6 7

Sample Output 1

3

We can gather all the pieces in three operations as follows:

  • Choose the pieces on Vertex 3 and 5.
  • Choose the pieces on Vertex 2 and 7.
  • Choose the pieces on Vertex 4 and 6.

Sample Input 2

7
0010110
1 2
2 3
1 4
4 5
1 6
6 7

Sample Output 2

-1

Sample Input 3

2
01
1 2

Sample Output 3

0