Score : $600$ points
We have a tree with $N$ vertices. The $i$-th edge connects Vertex $A_i$ and $B_i$ bidirectionally.
Takahashi is standing at Vertex $u$, and Aoki is standing at Vertex $v$.
Now, they will play a game of tag as follows:
$1$. If Takahashi and Aoki are standing at the same vertex, the game ends. Otherwise, Takahashi moves to a vertex of his choice that is adjacent to his current vertex.
$2$. If Takahashi and Aoki are standing at the same vertex, the game ends. Otherwise, Aoki moves to a vertex of his choice that is adjacent to his current vertex.
$3$. Go back to step $1$.
Takahashi performs his moves so that the game ends as late as possible, while Aoki performs his moves so that the game ends as early as possible.
Find the number of moves Aoki will perform before the end of the game if both Takahashi and Aoki know each other's position and strategy.
It can be proved that the game is bound to end.
Input is given from Standard Input in the following format:
$N$ $u$ $v$ $A_1$ $B_1$ $:$ $A_{N-1}$ $B_{N-1}$
Print the number of moves Aoki will perform before the end of the game.
5 4 1 1 2 2 3 3 4 3 5
2
If both players play optimally, the game will progress as follows:
Here, Aoki performs two moves.
Note that, in each move, it is prohibited to stay at the current vertex.
5 4 5 1 2 1 3 1 4 1 5
1
2 1 2 1 2
0
9 6 1 1 2 2 3 3 4 4 5 5 6 4 7 7 8 8 9
5