A13225 | Three Paths on a Tree
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
You are given an unweighted tree with $n$ vertices. Recall that a tree is a connected undirected graph without cycles.
Your task is to choose three distinct vertices $a, b, c$ on this tree such that the number of edges which belong to at least one of the simple paths between $a$ and $b$ , $b$ and $c$ , or $a$ and $c$ is the maximum possible. See the notes section for a better understanding.
The simple path is the path that visits each vertex at most once.
Your task is to choose three distinct vertices $a, b, c$ on this tree such that the number of edges which belong to at least one of the simple paths between $a$ and $b$ , $b$ and $c$ , or $a$ and $c$ is the maximum possible. See the notes section for a better understanding.
The simple path is the path that visits each vertex at most once.
输入格式
The first line contains one integer number $n$ ( $3 \le n \le 2 \cdot 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 \le a_i$ , $b_i \le n$ , $a_i \ne 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 \le a_i$ , $b_i \le n$ , $a_i \ne b_i$ ). It is guaranteed that given graph is a tree.
输出格式
In the first line print one integer $res$ — the maximum number of edges which belong to at least one of the simple paths between $a$ and $b$ , $b$ and $c$ , or $a$ and $c$ .
In the second line print three integers $a, b, c$ such that $1 \le a, b, c \le n$ and $a \ne, b \ne c, a \ne c$ .
If there are several answers, you can print any.
In the second line print three integers $a, b, c$ such that $1 \le a, b, c \le n$ and $a \ne, b \ne c, a \ne c$ .
If there are several answers, you can print any.
输入输出样例
输入 #1
8 1 2 2 3 3 4 4 5 4 6 3 7 3 8
输出 #1
5 1 8 6
The picture corresponding to the first example (and another one correct answer):

If you choose vertices $1, 5, 6$ then the path between $1$ and $5$ consists of edges $(1, 2), (2, 3), (3, 4), (4, 5)$ , the path between $1$ and $6$ consists of edges $(1, 2), (2, 3), (3, 4), (4, 6)$ and the path between $5$ and $6$ consists of edges $(4, 5), (4, 6)$ . The union of these paths is $(1, 2), (2, 3), (3, 4), (4, 5), (4, 6)$ so the answer is $5$ . It can be shown that there is no better answer.

If you choose vertices $1, 5, 6$ then the path between $1$ and $5$ consists of edges $(1, 2), (2, 3), (3, 4), (4, 5)$ , the path between $1$ and $6$ consists of edges $(1, 2), (2, 3), (3, 4), (4, 6)$ and the path between $5$ and $6$ consists of edges $(4, 5), (4, 6)$ . The union of these paths is $(1, 2), (2, 3), (3, 4), (4, 5), (4, 6)$ so the answer is $5$ . It can be shown that there is no better answer.
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted