CF982C.Cut 'em all!

传统题 时间 2000 ms 内存 256 MiB 8 尝试 22 已通过 8 标签

Cut 'em all!

You're given a tree with nn vertices.

Your task is to determine the maximum possible number of edges that can be removed in such a way that all the remaining connected components will have even size.

Input

The first line contains an integer nn (1n1051 \le n \le 10^5) denoting the size of the tree.

The next n1n - 1 lines contain two integers uu, vv (1u,vn1 \le u, v \le n) each, describing the vertices connected by the ii-th edge.

It's guaranteed that the given edges form a tree.

Output

Output a single integer kk — the maximum number of edges that can be removed to leave all connected components with even size, or 1-1 if it is impossible to remove edges in order to satisfy this property.

Note

In the first example you can remove the edge between vertices 11 and 44. The graph after that will have two connected components with two vertices in each.

In the second example you can't remove edges in such a way that all components have even number of vertices, so the answer is 1-1.

Samples

4
2 4
4 1
3 1
1
3
1 2
1 3
-1
10
7 1
8 4
8 10
4 7
6 5
9 3
3 5
2 10
2 5
4
2
1 2
0

在线编程 IDE

建议全屏模式获得最佳体验