Book of Evil

题意翻译

有一棵树有 n个节点,其中有 m个节点发现了怪物。 已知树上有一本魔法书,魔法书可以让到其距离小于等于d的点出现怪物,求魔法书所在点有几种可能。 输入第一行为3个正整数 n m d 第二行 m 个整数,以空格间隔,表明这些点出现了怪物。 接下来 n−1行,每行两个整数,描述树上的一条边。 输出一行一个整数,魔法书所在位置的可能性。

题目描述

Paladin Manao caught the trail of the ancient Book of Evil in a swampy area. This area contains $ n $ settlements numbered from 1 to $ n $ . Moving through the swamp is very difficult, so people tramped exactly $ n-1 $ paths. Each of these paths connects some pair of settlements and is bidirectional. Moreover, it is possible to reach any settlement from any other one by traversing one or several paths. The distance between two settlements is the minimum number of paths that have to be crossed to get from one settlement to the other one. Manao knows that the Book of Evil has got a damage range $ d $ . This means that if the Book of Evil is located in some settlement, its damage (for example, emergence of ghosts and werewolves) affects other settlements at distance $ d $ or less from the settlement where the Book resides. Manao has heard of $ m $ settlements affected by the Book of Evil. Their numbers are $ p_{1},p_{2},...,p_{m} $ . Note that the Book may be affecting other settlements as well, but this has not been detected yet. Manao wants to determine which settlements may contain the Book. Help him with this difficult task.

输入输出格式

输入格式


The first line contains three space-separated integers $ n $ , $ m $ and $ d $ ( $ 1<=m<=n<=100000; 0<=d<=n-1 $ ). The second line contains $ m $ distinct space-separated integers $ p_{1},p_{2},...,p_{m} $ ( $ 1<=p_{i}<=n $ ). Then $ n-1 $ lines follow, each line describes a path made in the area. A path is described by a pair of space-separated integers $ a_{i} $ and $ b_{i} $ representing the ends of this path.

输出格式


Print a single number — the number of settlements that may contain the Book of Evil. It is possible that Manao received some controversial information and there is no settlement that may contain the Book. In such case, print 0.

输入输出样例

输入样例 #1

6 2 3
1 2
1 5
2 3
3 4
4 5
5 6

输出样例 #1

3

说明

Sample 1. The damage range of the Book of Evil equals 3 and its effects have been noticed in settlements 1 and 2. Thus, it can be in settlements 3, 4 or 5. ![](https://cdn.luogu.com.cn/upload/vjudge_pic/CF337D/bb5982168a46056c0b6c7bf34dd6accd73b10df3.png)