#P9725. [EC Final 2022] Chase Game 2
[EC Final 2022] Chase Game 2
题目描述
Prof. Pang and Prof. Shou like playing a chase game.
The game map consists of rooms and bi-directional channels. The game map is connected. That means, the map forms a tree.
At first, Prof. Pang is in room , while Prof. Shou is in room (). Prof. Pang and Prof. Shou take turns to play, and Prof. Shou goes first. In one's turn, the player knows his own position and the other player's position and can decide either to stay in the current room or to move to another room which is connected with the current room directly by a channel. When Prof. Pang and Prof. Shou are in the same room, Prof. Shou is caught by Prof. Pang.
Prof. Pang and Prof. Shou are smart enough. Prof. Pang wants to catch Prof. Shou in a finite number of turns. Prof. Shou does not want to be caught by Prof. Pang in any finite number of turns.
Prof. Shou gets tired of being caught every time and finds Prof. Fei for help. Prof. Shou asks Prof. Fei to add some channels so that Prof. Pang cannot catch him in finite number of turns for any pair of initial rooms . Prof. Fei is lazy, so he hopes to add as few channels as possible. If no matter how to add the channels there is always a pair of rooms such that Prof. Pang can catch Prof. Shou, output .
输入格式
The first line contains a single integer () denoting the number of test cases.
For each test case, the first line contains a single integer () denoting the number of rooms.
For the next lines, each line contains two integers and () denoting a channel connecting room and room .
It is guaranteed that the sum of over all test cases does not exceed , and the rooms and channels always form a tree.
输出格式
For each test case, print a number denoting the smallest number of added channels, or just print .
4
2
1 2
4
1 2
2 3
3 4
4
1 2
2 3
2 4
5
1 2
2 3
3 4
3 5
-1
1
-1
2