Tree Distances II
Execution time limit is 1 second
Runtime memory usage limit is 128 megabytes
You are given a tree consisting of nodes.
Your task is to determine for each node the sum of the distances from the node to all other nodes.
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 sum of the distances.
Examples
Input #1
Answer #1
Submissions 14
Acceptance rate 50%