Score : 1900 points
There is a tree with N vertices. The vertices are numbered 1 through N. For each 1 ≤ i ≤ N - 1, the i-th edge connects vertices a_i and b_i. The lengths of all the edges are 1.
Snuke likes some of the vertices.
The information on his favorite vertices are given to you as a string s of length N.
For each 1 ≤ i ≤ N, s_i is 1
if Snuke likes vertex i, and 0
if he does not like vertex i.
Initially, all the vertices are white. Snuke will perform the following operation exactly once:
Find the number of the possible combinations of colors of the vertices after the operation.
0
and 1
.1
.1
.The input is given from Standard Input in the following format:
N a_1 b_1 a_2 b_2 : a_{N - 1} b_{N - 1} s
Print the number of the possible combinations of colors of the vertices after the operation.
4 1 2 1 3 1 4 1100
4
The following four combinations of colors of the vertices are possible:
5 1 2 1 3 1 4 4 5 11111
11
This case satisfies the additional constraint for the partial score.
6 1 2 1 3 1 4 2 5 2 6 100011
8