Problem C

Statement
Copy Copied
Description:
Byteland is a beautiful land known because of its beautiful trees.

Misha has found a binary tree with $$$n$$$ vertices, numbered from $$$1$$$ to $$$n$$$. A binary tree is an acyclic connected bidirectional graph containing $$$n$$$ vertices and $$$n - 1$$$ edges. Each vertex has a degree at most $$$3$$$, whereas the root is the vertex with the number $$$1$$$ and it has a degree at most $$$2$$$.

Unfortunately, the root got infected.

The following process happens $$$n$$$ times:

- Misha either chooses a non-infected (and not deleted) vertex and deletes it with all edges which have an end in this vertex or just does nothing.
- Then, the infection spreads to each vertex that is connected by an edge to an already infected vertex (all already infected vertices remain infected).

As Misha does not have much time to think, please tell him what is the maximum number of vertices he can save from the infection (note that deleted vertices are not counted as saved).

Input Format:
There are several test cases in the input data. The first line contains a single integer $$$t$$$ ($$$1\leq t\leq 5000$$$) — the number of test cases. This is followed by the test cases description.

The first line of each test case contains one integer $$$n$$$ ($$$2\leq n\leq 3\cdot 10^5$$$) — the number of vertices of the tree.

The $$$i$$$-th of the following $$$n-1$$$ lines in the test case contains two positive integers $$$u_i$$$ and $$$v_i$$$ ($$$1 \leq u_i, v_i \leq n$$$), meaning that there exists an edge between them in the graph.

It is guaranteed that the graph is a binary tree rooted at $$$1$$$. It is also guaranteed that the sum of $$$n$$$ over all test cases won't exceed $$$3\cdot 10^5$$$.

Output Format:
For each test case, output the maximum number of vertices Misha can save.

Note:
In the first test case, the only possible action is to delete vertex $$$2$$$, after which we save $$$0$$$ vertices in total.

In the second test case, if we delete vertex $$$2$$$, we can save vertices $$$3$$$ and $$$4$$$.

Submissions

IDLanguageExit CodeTimestampCodeStdoutStderrRetry
4901 cpp 0 2026-03-05T12:06:06.572082Z View View View Retry
4899 cpp 1 2026-03-05T12:03:38.344866Z View View View Retry

Evaluations

Eval IDRun IDProviderModelLangSuccessTimestampPromptResponseStdoutStderrRetry
2039 20260310-032144 openai gpt-5.4 go true 2026-03-10T03:34:15.401393Z View View View View Retry
1555 20260305-112749 openai gpt-5 go false 2026-03-05T11:59:50.28671Z View View View View Retry