CF1611E2.Escape The Maze (hard version)
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
The only difference with E1 is the question of the problem.
Vlad built a maze out of n rooms and n−1 bidirectional corridors. From any room u any other room v can be reached through a sequence of corridors. Thus, the room system forms an undirected tree.
Vlad invited k friends to play a game with them.
Vlad starts the game in the room 1 and wins if he reaches a room other than 1 , into which exactly one corridor leads. Friends are placed in the maze: the friend with number i is in the room xi , and no two friends are in the same room (that is, xi=xj for all i=j ). Friends win if one of them meets Vlad in any room or corridor before he wins.
For one unit of time, each participant of the game can go through one corridor. All participants move at the same time. Participants may not move. Each room can fit all participants at the same time.
Friends know the plan of a maze and intend to win. They don't want to waste too much energy. They ask you to determine if they can win and if they can, what minimum number of friends must remain in the maze so that they can always catch Vlad.
In other words, you need to determine the size of the minimum (by the number of elements) subset of friends who can catch Vlad or say that such a subset does not exist.
输入格式
The first line of the input contains an integer t ( 1≤t≤104 ) — the number of test cases in the input. The input contains an empty string before each test case.
The first line of the test case contains two numbers n and k ( 1≤k<n≤2⋅105 ) — the number of rooms and friends, respectively.
The next line of the test case contains k integers x1,x2,…,xk ( 2≤xi≤n ) — numbers of rooms with friends. All xi are different.
The next n−1 lines contain descriptions of the corridors, two numbers per line vj and uj ( 1≤uj,vj≤n ) — numbers of rooms that connect the j corridor. All corridors are bidirectional. From any room, you can go to any other by moving along the corridors.
It is guaranteed that the sum of the values n over all test cases in the test is not greater than 2⋅105 .
输出格式
Print t lines, each line containing the answer to the corresponding test case. The answer to a test case should be −1 if Vlad wins anyway and a minimal number of friends otherwise.
输入输出样例
输入#1
4 8 2 5 3 4 7 2 5 1 6 3 6 7 2 1 7 6 8 8 4 6 5 7 3 4 7 2 5 1 6 3 6 7 2 1 7 6 8 3 1 2 1 2 2 3 3 2 2 3 3 1 1 2
输出#1
-1 2 1 2
说明/提示
In the first set of inputs, even if all the friends stay in the maze, Vlad can still win. Therefore, the answer is "-1".
In the second set of inputs it is enough to leave friends from rooms 6 and 7 . Then Vlad will not be able to win. The answer is "2".
In the third and fourth sets of inputs Vlad cannot win only if all his friends stay in the maze. Therefore the answers are "1" and "2".