406523: GYM102431 G Game on the Tree

Memory Limit:256 MB Time Limit:5 S
Judge Style:Text Compare Creator:
Submit:0 Solved:0

Description

G. Game on the Treetime limit per test5 secondsmemory limit per test256 megabytesinputstandard inputoutputstandard output

Mr. Panda and Mr. Sheep are playing a game on a tree with $$$n$$$ vertices. Initially, there is a token on the vertex 1. Mr. Panda and Mr. Sheep take turns and Mr.Panda moves first.

In each turn, a player must move the token to another vertex. There is a restriction that except for the first step, the distance the token moved must be strictly greater than the distance it moved in the previous turn by the opponent. If there is no valid move for the turn, the player loses.

Mr. Sheep finds this game might be unfair to him. So Mr. Panda allows Mr. Sheep to choose a connected subgraph of the tree which also contains the vertex 1 along with the token on the vertex. If both Mr. Panda and Mr. Sheep play optimally, in how many different ways can Mr. Sheep choose a subgraph for them to play the game on so that he can win? Two ways are considered different if the subgraphs in these two ways differ. As the answer can be very large, you only need to output it modulo ($$$10^9 + 7$$$).

Input

The first line of the input gives the number of test cases, $$$T$$$ ($$$1 \leq T \leq 10$$$). $$$T$$$ test cases follow.

For each test case, the first line contains an integer $$$n$$$ ($$$1 \leq n \leq 2 \times 10^5$$$), representing the number of vertices of the tree.

The next $$$n - 1$$$ lines each contains two integers $$$x$$$ and $$$y$$$ ($$$1 \leq x, y \leq n$$$), indicating there is an edge between vertex $$$x$$$ and vertex $$$y$$$. It is guaranteed that the given edges form a tree.

Output

For each test case, output one line containing "Case #x: y", where x is the test case number (starting from 1) and y is the number of different winning ways modulo ($$$10^9 + 7$$$).

ExampleInput
2
2
1 2
6
1 2
2 3
1 4
4 5
4 6
Output
Case #1: 1
Case #2: 5

加入题单

算法标签: