David's Magic Sloth
Sloths live, nay, thrive in trees. Obviously David has a pet sloth that he lets play on his unweighted trees while solving programming problems. Sloths are typically very slow creatures but David's sloth (Jeff for those invested) has the ability to teleport around the tree at will (but only on the tree, Jeff is still lazy at heart).
What is the furthest possible distance David's magic sloth can travel in a given tree?
Background: A tree is a graph with
Input Specification
The first line contains an integer
The next
Output Specification
A single integer; the maximum distance David's sloth can teleport.
Sample Input 1
1
Sample Output 1
0
Sample Input 2
3
3 1
1 2
Sample Output 2
2
Sample Input 3
5
3 1
1 2
4 2
5 2
Sample Output 3
2
Comments