CF1307F.Cow and Vacation
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
Bessie is planning a vacation! In Cow-lifornia, there are n cities, with n−1 bidirectional roads connecting them. It is guaranteed that one can reach any city from any other city.
Bessie is considering v possible vacation plans, with the i -th one consisting of a start city ai and destination city bi .
It is known that only r of the cities have rest stops. Bessie gets tired easily, and cannot travel across more than k consecutive roads without resting. In fact, she is so desperate to rest that she may travel through the same city multiple times in order to do so.
For each of the vacation plans, does there exist a way for Bessie to travel from the starting city to the destination city?
输入格式
The first line contains three integers n , k , and r ( 2≤n≤2⋅105 , 1≤k,r≤n ) — the number of cities, the maximum number of roads Bessie is willing to travel through in a row without resting, and the number of rest stops.
Each of the following n−1 lines contain two integers xi and yi ( 1≤xi,yi≤n , xi=yi ), meaning city xi and city yi are connected by a road.
The next line contains r integers separated by spaces — the cities with rest stops. Each city will appear at most once.
The next line contains v ( 1≤v≤2⋅105 ) — the number of vacation plans.
Each of the following v lines contain two integers ai and bi ( 1≤ai,bi≤n , ai=bi ) — the start and end city of the vacation plan.
输出格式
If Bessie can reach her destination without traveling across more than k roads without resting for the i -th vacation plan, print YES. Otherwise, print NO.
输入输出样例
输入#1
6 2 1 1 2 2 3 2 4 4 5 5 6 2 3 1 3 3 5 3 6
输出#1
YES YES NO
输入#2
8 3 3 1 2 2 3 3 4 4 5 4 6 6 7 7 8 2 5 8 2 7 1 8 1
输出#2
YES NO
说明/提示
The graph for the first example is shown below. The rest stop is denoted by red.
For the first query, Bessie can visit these cities in order: 1,2,3 .
For the second query, Bessie can visit these cities in order: 3,2,4,5 .
For the third query, Bessie cannot travel to her destination. For example, if she attempts to travel this way: 3,2,4,5,6 , she travels on more than 2 roads without resting.
The graph for the second example is shown below.