题库练习 A Wide, Wide Graph
← 上一题 下一题 →

A15820 | A Wide, Wide Graph

时间限制1s
内存限制256MB
通过 / 提交0/0

题目描述

You are given a tree (a connected graph without cycles) with $n$ vertices.

Consider a fixed integer $k$ . Then, the graph $G_k$ is an undirected graph with $n$ vertices, where an edge between vertices $u$ and $v$ exists if and only if the distance between vertices $u$ and $v$ in the given tree is at least $k$ .

For each $k$ from $1$ to $n$ , print the number of connected components in the graph $G_k$ .

输入格式

The first line contains the integer $n$ ( $2 \le n \le 10^5$ ) — the number of vertices in the graph.

Each of the next $n-1$ lines contains two integers $u$ and $v$ ( $1 \le u, v \le n$ ), denoting an edge between vertices $u$ and $v$ in the tree. It is guaranteed that these edges form a valid tree.

输出格式

Output $n$ integers: the number of connected components in the graph $G_k$ for each $k$ from $1$ to $n$ .

输入输出样例

输入 #1
6
1 2
1 3
2 4
2 5
3 6
输出 #1
1 1 2 4 6 6
输入 #2
5
1 2
2 3
3 4
3 5
输出 #2
1 1 3 5 5
C++ 编辑器
输入
输出