Tree Distances I
Medium
Execution time limit is 3 seconds
Runtime memory usage limit is 1,024 megabytes
You are given a tree consisting of nodes.
Your task is to determine for each node the maximum distance to another node.
Input
The first 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 integers: for each node the maximum distance to another node.
Examples
Input #1
Answer #1
Submissions 206
Acceptance rate 26%