A11529 | Tree Destruction
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
You are given an unweighted tree with $n$ vertices. Then $n-1$ following operations are applied to the tree. A single operation consists of the following steps:
1. choose two leaves;
2. add the length of the simple path between them to the answer;
3. remove one of the chosen leaves from the tree.
Initial answer (before applying operations) is $0$ . Obviously after $n-1$ such operations the tree will consist of a single vertex.
Calculate the maximal possible answer you can achieve, and construct a sequence of operations that allows you to achieve this answer!
1. choose two leaves;
2. add the length of the simple path between them to the answer;
3. remove one of the chosen leaves from the tree.
Initial answer (before applying operations) is $0$ . Obviously after $n-1$ such operations the tree will consist of a single vertex.
Calculate the maximal possible answer you can achieve, and construct a sequence of operations that allows you to achieve this answer!
输入格式
The first line contains one integer number $n$ ( $2<=n<=2·10^{5}$ ) — the number of vertices in the tree.
Next $n-1$ lines describe the edges of the tree in form $a_{i},b_{i}$ ( $1<=a_{i}$ , $b_{i}<=n$ , $a_{i}≠b_{i}$ ). It is guaranteed that given graph is a tree.
Next $n-1$ lines describe the edges of the tree in form $a_{i},b_{i}$ ( $1<=a_{i}$ , $b_{i}<=n$ , $a_{i}≠b_{i}$ ). It is guaranteed that given graph is a tree.
输出格式
In the first line print one integer number — maximal possible answer.
In the next $n-1$ lines print the operations in order of their applying in format $a_{i},b_{i},c_{i}$ , where $a_{i},b_{i}$ — pair of the leaves that are chosen in the current operation ( $1<=a_{i}$ , $b_{i}<=n$ ), $c_{i}$ ( $1<=c_{i}<=n$ , $c_{i}=a_{i}$ or $c_{i}=b_{i}$ ) — choosen leaf that is removed from the tree in the current operation.
See the examples for better understanding.
In the next $n-1$ lines print the operations in order of their applying in format $a_{i},b_{i},c_{i}$ , where $a_{i},b_{i}$ — pair of the leaves that are chosen in the current operation ( $1<=a_{i}$ , $b_{i}<=n$ ), $c_{i}$ ( $1<=c_{i}<=n$ , $c_{i}=a_{i}$ or $c_{i}=b_{i}$ ) — choosen leaf that is removed from the tree in the current operation.
See the examples for better understanding.
输入输出样例
输入 #1
3 1 2 1 3
输出 #1
3 2 3 3 2 1 1
输入 #2
5 1 2 1 3 2 4 2 5
输出 #2
9 3 5 5 4 3 3 4 1 1 4 2 2
暂无题解
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted