A15067 | Tree Queries (Hard Version)
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
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 $v_1, v_2, \ldots, v_k$ where the $v_i$ are vertices in the tree. After you are finished asking all of the queries, you are given $k$ numbers $d_1, d_2, \ldots, d_k$ , where $d_i$ is the number of edges on the shortest path between $v_i$ and $x$ . Note that you know which distance corresponds to which query.
What is the minimum $k$ such that there exists some queries $v_1, v_2, \ldots, v_k$ that let you always uniquely identify $x$ (no matter what $x$ is).
Note that you don't actually need to output these queries.
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 $v_1, v_2, \ldots, v_k$ where the $v_i$ are vertices in the tree. After you are finished asking all of the queries, you are given $k$ numbers $d_1, d_2, \ldots, d_k$ , where $d_i$ is the number of edges on the shortest path between $v_i$ and $x$ . Note that you know which distance corresponds to which query.
What is the minimum $k$ such that there exists some queries $v_1, v_2, \ldots, v_k$ 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 \le t \le 10^4$ ). Description of the test cases follows.
The first line of each test case contains a single integer $n$ ( $1 \le n \le 2\cdot10^5$ ) — the number of vertices in the tree.
Each of the next $n-1$ lines contains two integers $x$ and $y$ ( $1 \le x, y \le 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\cdot10^5$ .
The first line of each test case contains a single integer $n$ ( $1 \le n \le 2\cdot10^5$ ) — the number of vertices in the tree.
Each of the next $n-1$ lines contains two integers $x$ and $y$ ( $1 \le x, y \le 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\cdot10^5$ .
输出格式
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$ .
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$ .
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted