Codeforces Round #196 (Div. 2) D. Book of Evil 树形dp

题目链接:

http://codeforces.com/problemset/problem/337/D

D. Book of Evil


time limit per test2 secondsmemory limit per test256 megabytes
问题描述

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.

输入

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.

输出

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.

样例输入

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

样例输出

3

题意

给你一颗树,边长都为1,魔鬼会在某个点释放魔法,魔法的影响范围是d现在告诉你,若干个被影响的城市,叫你求魔鬼可能在的顶点数量。

题解

树dp维护一个点到最远的被影响城市的距离。类似直径一样转移。

代码

#include<map>
#include<set>
#include<cmath>
#include<queue>
#include<stack>
#include<ctime>
#include<vector>
#include<cstdio>
#include<string>
#include<bitset>
#include<cstdlib>
#include<cstring>
#include<iostream>
#include<algorithm>
#include<functional>
using namespace std;
#define X first
#define Y second
#define mkp make_pair
#define lson (o<<1)
#define rson ((o<<1)|1)
#define mid (l+(r-l)/2)
#define sz() size()
#define pb(v) push_back(v)
#define all(o) (o).begin(),(o).end()
#define clr(a,v) memset(a,v,sizeof(a))
#define bug(a) cout<<#a<<" = "<<a<<endl
#define rep(i,a,b) for(int i=a;i<(b);i++)
#define scf scanf
#define prf printf

typedef long long LL;
typedef vector<int> VI;
typedef pair<int,int> PII;
typedef vector<pair<int,int> > VPII;

const int INF=0x3f3f3f3f;
const LL INFL=0x3f3f3f3f3f3f3f3fLL;
const double eps=1e-8;
const double PI = acos(-1.0);

//start----------------------------------------------------------------------

const int maxn=101010;

VI G[maxn];
int n,m,d;
int dp[maxn][2],id[maxn];
bool arr[maxn];

///dp[u][0]:最大值,dp[u][1]:次大值
void dfs(int u,int fa){
    dp[u][0]=dp[u][1]=-INF;
    if(arr[u]) dp[u][0]=dp[u][1]=0;
    id[u]=-1;
    rep(i,0,G[u].sz()){
        int v=G[u][i];
        if(v==fa) continue;
        dfs(v,u);
        if(dp[v][0]<0) continue;

        if(dp[u][0]<dp[v][0]+1){
            dp[u][1]=dp[u][0];
            dp[u][0]=dp[v][0]+1;
            id[u]=v;
        }else if(dp[u][1]<dp[v][0]+1){
            dp[u][1]=dp[v][0]+1;
        }
    }
}

void dfs2(int u,int fa,int ma){
    dp[u][0]=max(dp[u][0],ma);
    rep(i,0,G[u].sz()){
        int v=G[u][i];
        if(v==fa) continue;
        if(id[u]==v){
            dfs2(v,u,max(dp[u][1],ma)+1);
        }else{
            dfs2(v,u,max(dp[u][0],ma)+1);
        }
    }
}

int main() {
    clr(arr,0);
    scf("%d%d%d",&n,&m,&d);
    rep(i,0,m){
        int x; scf("%d",&x);
        arr[x]=1;
    }
    rep(i,0,n-1){
        int u,v;
        scf("%d%d",&u,&v);
        G[u].pb(v);
        G[v].pb(u);
    }

    dfs(1,-1);
    dfs2(1,-1,-INF);

    int cnt=0;
    for(int i=1;i<=n;i++) if(dp[i][0]<=d) cnt++;

    prf("%d\n",cnt);

    return 0;
}

//end-----------------------------------------------------------------------

转载于:https://www.cnblogs.com/fenice/p/5954999.html

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值