A13710 | Link Cut Centroids
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
Fishing Prince loves trees, and he especially loves trees with only one centroid. The tree is a connected graph without cycles.
A vertex is a centroid of a tree only when you cut this vertex (remove it and remove all edges from this vertex), the size of the largest connected component of the remaining graph is the smallest possible.
For example, the centroid of the following tree is $2$ , because when you cut it, the size of the largest connected component of the remaining graph is $2$ and it can't be smaller.
However, in some trees, there might be more than one centroid, for example:
Both vertex $1$ and vertex $2$ are centroids because the size of the largest connected component is $3$ after cutting each of them.
Now Fishing Prince has a tree. He should cut one edge of the tree (it means to remove the edge). After that, he should add one edge. The resulting graph after these two operations should be a tree. He can add the edge that he cut.
He wants the centroid of the resulting tree to be unique. Help him and find any possible way to make the operations. It can be proved, that at least one such way always exists.
A vertex is a centroid of a tree only when you cut this vertex (remove it and remove all edges from this vertex), the size of the largest connected component of the remaining graph is the smallest possible.
For example, the centroid of the following tree is $2$ , because when you cut it, the size of the largest connected component of the remaining graph is $2$ and it can't be smaller.
However, in some trees, there might be more than one centroid, for example:
Both vertex $1$ and vertex $2$ are centroids because the size of the largest connected component is $3$ after cutting each of them.
Now Fishing Prince has a tree. He should cut one edge of the tree (it means to remove the edge). After that, he should add one edge. The resulting graph after these two operations should be a tree. He can add the edge that he cut.
He wants the centroid of the resulting tree to be unique. Help him and find any possible way to make the operations. It can be proved, that at least one such way always exists.
输入格式
The input consists of multiple test cases. The first line contains an integer $t$ ( $1\leq t\leq 10^4$ ) — the number of test cases. The description of the test cases follows.
The first line of each test case contains an integer $n$ ( $3\leq n\leq 10^5$ ) — the number of vertices.
Each of the next $n-1$ lines contains two integers $x, y$ ( $1\leq x,y\leq n$ ). It means, that there exists an edge connecting vertices $x$ and $y$ .
It's guaranteed that the given graph is a tree.
It's guaranteed that the sum of $n$ for all test cases does not exceed $10^5$ .
The first line of each test case contains an integer $n$ ( $3\leq n\leq 10^5$ ) — the number of vertices.
Each of the next $n-1$ lines contains two integers $x, y$ ( $1\leq x,y\leq n$ ). It means, that there exists an edge connecting vertices $x$ and $y$ .
It's guaranteed that the given graph is a tree.
It's guaranteed that the sum of $n$ for all test cases does not exceed $10^5$ .
输出格式
For each test case, print two lines.
In the first line print two integers $x_1, y_1$ ( $1 \leq x_1, y_1 \leq n$ ), which means you cut the edge between vertices $x_1$ and $y_1$ . There should exist edge connecting vertices $x_1$ and $y_1$ .
In the second line print two integers $x_2, y_2$ ( $1 \leq x_2, y_2 \leq n$ ), which means you add the edge between vertices $x_2$ and $y_2$ .
The graph after these two operations should be a tree.
If there are multiple solutions you can print any.
In the first line print two integers $x_1, y_1$ ( $1 \leq x_1, y_1 \leq n$ ), which means you cut the edge between vertices $x_1$ and $y_1$ . There should exist edge connecting vertices $x_1$ and $y_1$ .
In the second line print two integers $x_2, y_2$ ( $1 \leq x_2, y_2 \leq n$ ), which means you add the edge between vertices $x_2$ and $y_2$ .
The graph after these two operations should be a tree.
If there are multiple solutions you can print any.
输入输出样例
输入 #1
2 5 1 2 1 3 2 4 2 5 6 1 2 1 3 1 4 2 5 2 6
输出 #1
1 2 1 2 1 3 2 3
Note that you can add the same edge that you cut.
In the first test case, after cutting and adding the same edge, the vertex $2$ is still the only centroid.
In the second test case, the vertex $2$ becomes the only centroid after cutting the edge between vertices $1$ and $3$ and adding the edge between vertices $2$ and $3$ .
In the first test case, after cutting and adding the same edge, the vertex $2$ is still the only centroid.
In the second test case, the vertex $2$ becomes the only centroid after cutting the edge between vertices $1$ and $3$ and adding the edge between vertices $2$ and $3$ .
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted