← Home
write a go solution for Description:
Two hungry red pandas, Oscar and Lura, have a tree T with n nodes. They are willing to perform the following shuffle procedure on the whole tree T exactly once. With this shuffle procedure, they will create a new tree out of the nodes of the old tree.

1. Choose any node V from the original tree T. Create a new tree T_2, with V as the root.
2. Remove V from T, such that the original tree is split into one or more subtrees (or zero subtrees, if V is the only node in T).
3. Shuffle each subtree with the same procedure (again choosing any node as the root), then connect all shuffled subtrees' roots back to V to finish constructing T_2.

After this, Oscar and Lura are left with a new tree T_2. They can only eat leaves and are very hungry, so please find the maximum number of leaves over all trees that can be created in exactly one shuffle.

Note that leaves are all nodes with degree 1. Thus, the root may be considered as a leaf if it has only one child.

Input Format:
The first line contains a single integer t (1<=t<=10^4) — the number of test cases.

The first line of every test case contains a single integer n (2<=n<=2*10^5) — the number of nodes within the original tree T.

The next n-1 lines each contain two integers u and v (1<=qu,v<=qn) — an edge within the original tree T. The given edges form a tree.

The sum of n over all test cases does not exceed 3*10^5.

Output Format:
For each test case, output a single integer — the maximum number of leaves achievable with exactly one shuffle procedure on the whole tree.

Note:
In the first test case, it can be shown that the maximum number of leaves is 4. To accomplish this, we can start our shuffle with selecting node 3 as the new root.

In our second test case, we have a line of five nodes. It can be shown that the maximum number of leaves after one shuffle is 3. We can start off with node 2, which forces node 1 to become a leaf. Then, if we select node 4 on the right side, we will also have nodes 3 and 5 as leaves.

The third test case is a star graph with six nodes. The number of leaves cannot increase, thus our answer will be 5 (if we start the shuffling with the original root node).. Output only the code with no comments, explanation, or additional text.