codeforces 337D Book of Evil(dp)

13262 ワード

転載は出典を明記してください:http://www.cnblogs.com/fraud/ ——by fraud
 
Book of Evil
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 p1, p2, ..., pm. 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.
Input
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 p1, p2, ..., pm (1 ≤ pi ≤ 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 ai and bi representing the ends of this path.
Output
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.
Sample test(s)
Input
6 2 3
1 2
1 5
2 3
3 4
4 5
5 6

Output
3

Note
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.
codeforces 337D Book of Evil(dp)
 
に言及
1本のn個のノードの木にあげて、木の上のある点の上で1冊の“book of evil”があって、その周囲のその距離がdに等しい点より小さいのはすべてその影響を受けて、既知のm個の影響を受ける点、いくつかの“book of evil”があることを求めます
 
ノードからサブツリーまでの最長距離を維持し、最長距離の存在を除いて、別のサブツリーまでの最長距離を維持し、dfsをもう一度実行すればよい.

 1 #include <iostream>

 2 #include <cstdio>

 3 #include <cstring>

 4 #include <queue>

 5 #include <vector>

 6 using namespace std;

 7 #define MAXN 100010

 8 vector<int>G[MAXN];

 9 int dp[MAXN][2];

10 int pre[MAXN][2];

11 int ans=0;

12 int d;

13 void dfs(int u,int fa){

14     for(int i=0;i<G[u].size();i++){

15         int v=G[u][i];

16         if(v==fa)continue;

17         dfs(v,u);

18         int d1=dp[v][0]+1;

19         if(d1>dp[u][1]){

20             dp[u][1]=d1;

21             pre[u][1]=v;

22             if(dp[u][1]>dp[u][0]){

23                 swap(dp[u][0],dp[u][1]);

24                 swap(pre[u][0],pre[u][1]);

25             }

26         }

27     }

28 }

29 void dfs2(int u,int fa,int dis){

30     if(dis>d)return;

31     if(dp[u][0]<=d)ans++;//cout<<u<<endl;}

32     int d1=max(dp[u][0],dis)+1;

33     int d2=max(dp[u][1],dis)+1;

34     for(int i=0;i<G[u].size();i++)

35     {

36         int v=G[u][i];

37         if(v==fa)continue;

38         if(pre[u][0]==v)dfs2(v,u,d2);

39         else dfs2(v,u,d1);

40     }

41 }

42 int main()

43 {

44     ios::sync_with_stdio(false);

45     //freopen("in.in","r",stdin);

46     int m,n;

47     int u,v;

48     cin>>n>>m>>d;

49     for(int i=0;i<n;i++)dp[i][0]=dp[i][1]=-MAXN;

50     for(int i=0;i<n;i++)pre[i][0]=pre[i][1]=-1;

51     for(int i=0;i<m;i++){

52         cin>>u;

53         u--;

54         dp[u][0]=dp[u][1]=0;

55     }

56     for(int i=0;i<n;i++)G[i].clear();

57     for(int i=0;i<n-1;i++){

58         cin>>u>>v;

59         u--;v--;

60         G[u].push_back(v);

61         G[v].push_back(u);

62     }

63     ans=0;

64     dfs(0,-1);

65     dfs2(0,-1,-MAXN);

66     cout<<ans<<endl;

67     return 0;

68 }

コード君