A14785 | Distance Tree (hard version)
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
This version of the problem differs from the previous one only in the constraint on $n$ .
A tree is a connected undirected graph without cycles. A weighted tree has a weight assigned to each edge. The distance between two vertices is the minimum sum of weights on the path connecting them.
You are given a weighted tree with $n$ vertices, each edge has a weight of $1$ . Denote $d(v)$ as the distance between vertex $1$ and vertex $v$ .
Let $f(x)$ be the minimum possible value of $\max\limits_{1 \leq v \leq n} \ {d(v)}$ if you can temporarily add an edge with weight $x$ between any two vertices $a$ and $b$ $(1 \le a, b \le n)$ . Note that after this operation, the graph is no longer a tree.
For each integer $x$ from $1$ to $n$ , find $f(x)$ .
A tree is a connected undirected graph without cycles. A weighted tree has a weight assigned to each edge. The distance between two vertices is the minimum sum of weights on the path connecting them.
You are given a weighted tree with $n$ vertices, each edge has a weight of $1$ . Denote $d(v)$ as the distance between vertex $1$ and vertex $v$ .
Let $f(x)$ be the minimum possible value of $\max\limits_{1 \leq v \leq n} \ {d(v)}$ if you can temporarily add an edge with weight $x$ between any two vertices $a$ and $b$ $(1 \le a, b \le n)$ . Note that after this operation, the graph is no longer a tree.
For each integer $x$ from $1$ to $n$ , find $f(x)$ .
输入格式
The first line contains a single integer $t$ ( $1 \le t \le 10^4$ ) — the number of test cases.
The first line of each test case contains a single integer $n$ ( $2 \le n \le 3 \cdot 10^5$ ).
Each of the next $n−1$ lines contains two integers $u$ and $v$ ( $1 \le u,v \le n$ ) indicating that there is an edge between vertices $u$ and $v$ . It is guaranteed that the given edges form a tree.
It is guaranteed that the sum of $n$ over all test cases doesn't exceed $3 \cdot 10^5$ .
The first line of each test case contains a single integer $n$ ( $2 \le n \le 3 \cdot 10^5$ ).
Each of the next $n−1$ lines contains two integers $u$ and $v$ ( $1 \le u,v \le n$ ) indicating that there is an edge between vertices $u$ and $v$ . It is guaranteed that the given edges form a tree.
It is guaranteed that the sum of $n$ over all test cases doesn't exceed $3 \cdot 10^5$ .
输出格式
For each test case, print $n$ integers in a single line, $x$ -th of which is equal to $f(x)$ for all $x$ from $1$ to $n$ .
输入输出样例
输入 #1
3 4 1 2 2 3 1 4 2 1 2 7 1 2 1 3 3 4 3 5 3 6 5 7
输出 #1
1 2 2 2 1 1 2 2 3 3 3 3 3
 In the first testcase: - For $x = 1$ , we can an edge between vertices $1$ and $3$ , then $d(1) = 0$ and $d(2) = d(3) = d(4) = 1$ , so $f(1) = 1$ .
- For $x \ge 2$ , no matter which edge we add, $d(1) = 0$ , $d(2) = d(4) = 1$ and $d(3) = 2$ , so $f(x) = 2$ .
- For $x \ge 2$ , no matter which edge we add, $d(1) = 0$ , $d(2) = d(4) = 1$ and $d(3) = 2$ , so $f(x) = 2$ .
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted