406444: GYM102411 E Equidistant

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

Description

E. Equidistanttime limit per test2 secondsmemory limit per test512 megabytesinputstandard inputoutputstandard output

In 2019 ICPC subregions structure was changed a little. Now for each subregion, we need to choose the best place for the subregion finals. To make things fair we want to choose a city in such a way that all teams will spend the same amount of time to get there.

To make things simpler we say that all teams will use trains to get to the finals. The railroad system can be represented as a tree where each city is a vertex and some pairs of cities are connected by a railroad. It takes exactly one hour to get from one city to another if they are directly connected.

You are given a description of the railroad system and the cities where teams are located. You need to choose any city that has an equal distance to all teams' cities or detect that no such city exists.

Input

The first line of the input contains two integers $$$n$$$ and $$$m$$$ — the number of cities and the number of teams ($$$1 \le m \le n \le 2 \cdot 10^5$$$). Each of the following $$$n - 1$$$ lines contains two integers $$$v_i$$$ and $$$u_i$$$ — the indices of the cities connected by the $$$i$$$-th railroad ($$$1 \le v_i, u_i \le n$$$). It is guaranteed that for each pair of cities there is exactly one simple path connecting them.

The next line contains $$$m$$$ integers $$$c_1, c_2, \ldots, c_m$$$ — the cities of the teams ($$$1 \le c_i \le n$$$). All teams are located in different cities.

Output

If it is impossible to choose a city fairly, output a single word "NO". Otherwise, output a the word "YES" at the first line. The second line should contain a single integer — the city where subregion finals should be held. If there is more than one solution, output any of them.

ExamplesInput
6 3
1 2
2 3
3 4
4 5
4 6
1 5 6
Output
YES
3
Input
2 2
1 2
1 2
Output
NO

加入题单

算法标签: