CF763D.Timofey and a flat tree

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

Little Timofey has a big tree — an undirected connected graph with nn vertices and no simple cycles. He likes to walk along it. His tree is flat so when he walks along it he sees it entirely. Quite naturally, when he stands on a vertex, he sees the tree as a rooted tree with the root in this vertex.

Timofey assumes that the more non-isomorphic subtrees are there in the tree, the more beautiful the tree is. A subtree of a vertex is a subgraph containing this vertex and all its descendants. You should tell Timofey the vertex in which he should stand to see the most beautiful rooted tree.

Subtrees of vertices uu and vv are isomorphic if the number of children of uu equals the number of children of vv , and their children can be arranged in such a way that the subtree of the first son of uu is isomorphic to the subtree of the first son of vv , the subtree of the second son of uu is isomorphic to the subtree of the second son of vv , and so on. In particular, subtrees consisting of single vertex are isomorphic to each other.

输入格式

First line contains single integer nn ( 1<=n<=1051<=n<=10^{5} ) — number of vertices in the tree.

Each of the next n1n-1 lines contains two integers uiu_{i} and viv_{i} ( 1<=ui,vi<=1051<=u_{i},v_{i}<=10^{5} , uiviu_{i}≠v_{i} ), denoting the vertices the ii -th edge connects.

It is guaranteed that the given graph is a tree.

输出格式

Print single integer — the index of the vertex in which Timofey should stand. If there are many answers, you can print any of them.

输入输出样例

  • 输入#1

    3
    1 2
    2 3
    

    输出#1

    1
    
  • 输入#2

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

    输出#2

    1
    
  • 输入#3

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

    输出#3

    2
    

说明/提示

In the first example we can stand in the vertex 11 or in the vertex 33 so that every subtree is non-isomorphic. If we stand in the vertex 22 , then subtrees of vertices 11 and 33 are isomorphic.

In the second example, if we stand in the vertex 11 , then only subtrees of vertices 44 and 55 are isomorphic.

In the third example, if we stand in the vertex 11 , then subtrees of vertices 22 , 33 , 44 , 66 , 77 and 88 are isomorphic. If we stand in the vertex 22 , than only subtrees of vertices 33 , 44 , 66 , 77 and 88 are isomorphic. If we stand in the vertex 55 , then subtrees of vertices 22 , 33 , 44 , 66 , 77 and 88 are isomorphic, and subtrees of vertices 11 and 99 are isomorphic as well:

<br></br> 1 9<br></br> /<span class="tex-font-style-tt">\</span> /<span class="tex-font-style-tt">\</span><br></br>7 8 4 2<br></br>

首页