309010: CF1611E1. Escape The Maze (easy version)

Memory Limit:256 MB Time Limit:2 S
Judge Style:Text Compare Creator:
Submit:0 Solved:0

Description

Escape The Maze (easy version)

题意翻译

题目简述:现在有一棵树,其中 $1$ 号节点是树根,树上边都是双向边。树上有 $n$ 个点,您有 $k$ 位朋友。每个时刻,您和您的朋友都会顺着树上的边走向另一个节点。 您会获胜当且仅当你走到了叶子节点。 您会输当且仅当您被一个朋友在您获胜之前在任何房间或走廊遇到。 问:您是否会在这场游戏中获胜?

题目描述

The only difference with E2 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 $ x_i $ , and no two friends are in the same room (that is, $ x_i \neq x_j $ for all $ i \neq 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. Vlad is a bit afraid of their ardor. Determine if he can guarantee victory (i.e. can he win in any way friends play). In other words, determine if there is such a sequence of Vlad's moves that lets Vlad win in any way friends play.

输入输出格式

输入格式


The first line of the input contains an integer $ t $ ( $ 1 \le t \le 10^4 $ ) — 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 \le k < n \le 2\cdot 10^5 $ ) — the number of rooms and friends, respectively. The next line of the test case contains $ k $ integers $ x_1, x_2, \dots, x_k $ ( $ 2 \le x_i \le n $ ) — numbers of rooms with friends. All $ x_i $ are different. The next $ n-1 $ lines contain descriptions of the corridors, two numbers per line $ v_j $ and $ u_j $ ( $ 1 \le u_j, v_j \le 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\cdot10^5 $ .

输出格式


Print $ t $ lines, each line containing the answer to the corresponding test case. The answer to a test case should be "YES" if Vlad can guarantee himself a victory and "NO" otherwise. You may print every letter in any case you want (so, for example, the strings "yEs", "yes", "Yes" and "YES" will all be recognized as positive answers).

输入输出样例

输入样例 #1

4

8 2
5 3
4 7
2 5
1 6
3 6
7 2
1 7
6 8

3 1
2
1 2
2 3

3 1
2
1 2
1 3

3 2
2 3
3 1
1 2

输出样例 #1

YES
NO
YES
NO

说明

In the first test case, regardless of the strategy of his friends, Vlad can win by going to room $ 4 $ . The game may look like this: ![](https://cdn.luogu.com.cn/upload/vjudge_pic/CF1611E1/0a8c76c1125e98bbe64e3bee85b654b8b00ed8d2.png)The original locations of Vlad and friends. Vlad is marked in green, friends — in red. ![](https://cdn.luogu.com.cn/upload/vjudge_pic/CF1611E1/a01da1e80c938fd2913aa4a19caf3932554dfd58.png)Locations after one unit of time. ![](https://cdn.luogu.com.cn/upload/vjudge_pic/CF1611E1/315079dc5161157c1dc8fb4c3b930b808460dd31.png)End of the game.Note that if Vlad tries to reach the exit at the room $ 8 $ , then a friend from the $ 3 $ room will be able to catch him.

Input

题意翻译

题目简述:现在有一棵树,其中 $1$ 号节点是树根,树上边都是双向边。树上有 $n$ 个点,您有 $k$ 位朋友。每个时刻,您和您的朋友都会顺着树上的边走向另一个节点。 您会获胜当且仅当你走到了叶子节点。 您会输当且仅当您被一个朋友在您获胜之前在任何房间或走廊遇到。 问:您是否会在这场游戏中获胜?

加入题单

算法标签: