CF1073F.Choosing Two Paths

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

You are given an undirected unweighted tree consisting of nn vertices.

An undirected tree is a connected undirected graph with n1n - 1 edges.

Your task is to choose two pairs of vertices of this tree (all the chosen vertices should be distinct) (x1,y1)(x_1, y_1) and (x2,y2)(x_2, y_2) in such a way that neither x1x_1 nor y1y_1 belong to the simple path from x2x_2 to y2y_2 and vice versa (neither x2x_2 nor y2y_2 should not belong to the simple path from x1x_1 to y1y_1 ).

It is guaranteed that it is possible to choose such pairs for the given tree.

Among all possible ways to choose such pairs you have to choose one with the maximum number of common vertices between paths from x1x_1 to y1y_1 and from x2x_2 to y2y_2 . And among all such pairs you have to choose one with the maximum total length of these two paths.

It is guaranteed that the answer with at least two common vertices exists for the given tree.

The length of the path is the number of edges in it.

The simple path is the path that visits each vertex at most once.

输入格式

The first line contains an integer nn — the number of vertices in the tree ( 6n21056 \le n \le 2 \cdot 10^5 ).

Each of the next n1n - 1 lines describes the edges of the tree.

Edge ii is denoted by two integers uiu_i and viv_i , the labels of vertices it connects ( 1ui,vin1 \le u_i, v_i \le n , uiviu_i \ne v_i ).

It is guaranteed that the given edges form a tree.

It is guaranteed that the answer with at least two common vertices exists for the given tree.

输出格式

Print any two pairs of vertices satisfying the conditions described in the problem statement.

It is guaranteed that it is possible to choose such pairs for the given tree.

输入输出样例

  • 输入#1

    7
    1 4
    1 5
    1 6
    2 3
    2 4
    4 7
    

    输出#1

    3 6
    7 5
    
  • 输入#2

    9
    9 3
    3 5
    1 2
    4 3
    4 7
    1 7
    4 6
    3 8
    

    输出#2

    2 9
    6 8
    
  • 输入#3

    10
    6 8
    10 3
    3 7
    5 8
    1 7
    7 2
    2 9
    2 8
    1 4
    

    输出#3

    10 6
    4 5
    
  • 输入#4

    11
    1 2
    2 3
    3 4
    1 5
    1 6
    6 7
    5 8
    5 9
    4 10
    4 11
    

    输出#4

    9 11
    8 10
    

说明/提示

The picture corresponding to the first example:

The intersection of two paths is 22 (vertices 11 and 44 ) and the total length is 4+3=74 + 3 = 7 .

The picture corresponding to the second example:

The intersection of two paths is 22 (vertices 33 and 44 ) and the total length is 5+3=85 + 3 = 8 .

The picture corresponding to the third example:

The intersection of two paths is 33 (vertices 22 , 77 and 88 ) and the total length is 5+5=105 + 5 = 10 .

The picture corresponding to the fourth example:

The intersection of two paths is 55 (vertices 11 , 22 , 33 , 44 and 55 ) and the total length is 6+6=126 + 6 = 12 .

首页