题库练习 The Tag Game
← 上一题 下一题 →

A11037 | The Tag Game

时间限制1s
内存限制256MB
通过 / 提交0/0

题目描述

Alice got tired of playing the tag game by the usual rules so she offered Bob a little modification to it. Now the game should be played on an undirected rooted tree of $n$ vertices. Vertex 1 is the root of the tree.

Alice starts at vertex 1 and Bob starts at vertex $x$ ( $x≠1$ ). The moves are made in turns, Bob goes first. In one move one can either stay at the current vertex or travel to the neighbouring one.

The game ends when Alice goes to the same vertex where Bob is standing. Alice wants to minimize the total number of moves and Bob wants to maximize it.

You should write a program which will determine how many moves will the game last.

输入格式

The first line contains two integer numbers $n$ and $x$ ( $2<=n<=2·10^{5}$ , $2<=x<=n$ ).

Each of the next $n-1$ lines contains two integer numbers $a$ and $b$ ( $1<=a,b<=n$ ) — edges of the tree. It is guaranteed that the edges form a valid tree.

输出格式

Print the total number of moves Alice and Bob will make.

输入输出样例

输入 #1
4 3
1 2
2 3
2 4
输出 #1
4
输入 #2
5 2
1 2
2 3
3 4
2 5
输出 #2
6
C++ 编辑器
输入
输出