CF1294F.Three Paths on a Tree

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

You are given an unweighted tree with nn vertices. Recall that a tree is a connected undirected graph without cycles.

Your task is to choose three distinct vertices a,b,ca, b, c on this tree such that the number of edges which belong to at least one of the simple paths between aa and bb , bb and cc , or aa and cc 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 nn ( 3n21053 \le n \le 2 \cdot 10^5 ) — the number of vertices in the tree.

Next n1n - 1 lines describe the edges of the tree in form ai,bia_i, b_i ( 1ai1 \le a_i , binb_i \le n , aibia_i \ne b_i ). It is guaranteed that given graph is a tree.

输出格式

In the first line print one integer resres — the maximum number of edges which belong to at least one of the simple paths between aa and bb , bb and cc , or aa and cc .

In the second line print three integers a,b,ca, b, c such that 1a,b,cn1 \le a, b, c \le n and a,bc,aca \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,61, 5, 6 then the path between 11 and 55 consists of edges (1,2),(2,3),(3,4),(4,5)(1, 2), (2, 3), (3, 4), (4, 5) , the path between 11 and 66 consists of edges (1,2),(2,3),(3,4),(4,6)(1, 2), (2, 3), (3, 4), (4, 6) and the path between 55 and 66 consists of edges (4,5),(4,6)(4, 5), (4, 6) . The union of these paths is (1,2),(2,3),(3,4),(4,5),(4,6)(1, 2), (2, 3), (3, 4), (4, 5), (4, 6) so the answer is 55 . It can be shown that there is no better answer.

首页