- Time limit: 1.00 s
- Memory limit: 512 MB
Given a tree of nodes, your task is to find a centroid, i.e., a node such that when it is appointed the root of the tree, each subtree has at most nodes.
Input
The first input line contains an integer : the number of nodes. The nodes are numbered .
Then there are lines describing the edges. Each line contains two integers and : there is an edge between nodes and .
Output
Print one integer: a centroid node. If there are several possibilities, you can choose any of them.
Constraints
Example
Input:
5 1 2 2 3 3 4 3 5
Output:
3