CF1695D2.Tree Queries (Hard Version)
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
The only difference between this problem and D1 is the bound on the size of the tree.
You are given an unrooted tree with n vertices. There is some hidden vertex x in that tree that you are trying to find.
To do this, you may ask k queries v1,v2,…,vk where the vi are vertices in the tree. After you are finished asking all of the queries, you are given k numbers d1,d2,…,dk , where di is the number of edges on the shortest path between vi and x . Note that you know which distance corresponds to which query.
What is the minimum k such that there exists some queries v1,v2,…,vk that let you always uniquely identify x (no matter what x is).
Note that you don't actually need to output these queries.
输入格式
Each test contains multiple test cases. The first line contains the number of test cases t ( 1≤t≤104 ). Description of the test cases follows.
The first line of each test case contains a single integer n ( 1≤n≤2⋅105 ) — the number of vertices in the tree.
Each of the next n−1 lines contains two integers x and y ( 1≤x,y≤n ), meaning there is an edges between vertices x and y in the tree.
It is guaranteed that the given edges form a tree.
It is guaranteed that the sum of n over all test cases does not exceed 2⋅105 .
输出格式
For each test case print a single nonnegative integer, the minimum number of queries you need, on its own line.
输入输出样例
输入#1
3 1 2 1 2 10 2 4 2 1 5 7 3 10 8 6 6 1 1 3 4 7 9 6
输出#1
0 1 2
说明/提示
In the first test case, there is only one vertex, so you don't need any queries.
In the second test case, you can ask a single query about the node 1 . Then, if x=1 , you will get 0 , otherwise you will get 1 .