zoukankan      html  css  js  c++  java
  • 双向DFS模板题

    B. Book of Evil
    time limit per test
    2 seconds
    memory limit per test
    256 megabytes
    input
    standard input
    output
    standard output

    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 nm and d (1 ≤ mn ≤ 100000; 0 ≤ dn - 1). The second line contains mdistinct space-separated integers p1, p2, ..., pm (1 ≤ pin). 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.

     

    #include <iostream>
    #include <cstdio>
    #include <cmath>
    #include <vector>
    #include <map>
    #include <set>
    #include <string>
    #include <cstring>
    #include <algorithm>
    #include <iomanip>
    #include <queue>
    #include <cstdlib>
    #include <ctime>
    #include <stack>
    #include <bitset>
    #include <fstream>
    
    typedef unsigned long long ull;
    #define mp make_pair
    #define pb push_back
    
    const long double eps = 1e-9;
    const double pi = acos(-1.0);
    const long long inf = 1e18;
    
    using namespace std;
    
    int n, m, d;
    int f[ 100100 ], g[ 100100 ];
    vector< int > graf[ 100100 ];
    bool ok[ 100100 ];
    
    void dfs1( int v, int p )
    {
        //cout << v << " " << p << endl;
        f[v] = -1;
        for ( int i = 0; i < graf[v].size(); i++ )
        {
            int next = graf[v][i]; if ( next == p ) continue;
            dfs1( next, v );
            f[v] = max( f[v], ( f[next] == -1 ? -1 : f[next] + 1 ) );
        }
        if ( ok[v] ) f[v] = max( 0, f[v] );
    }
    
    void dfs2( int v, int p, int root )
    {
        g[v] = root;
        vector< int > sons;
        sons.pb( ( root == -1 ? -1 : root + 	1 ) );
        if ( ok[v] ) sons.pb( 1 );
        for ( int i = 0; i < graf[v].size(); i++ )
        {
            int next = graf[v][i]; if ( next == p ) continue;
            sons.pb( ( f[next] == -1 ? -1 : f[next] + 2 ) );
        }
        sort( sons.begin(), sons.end(), greater<int>() );
        for ( int i = 0; i < graf[v].size(); i++ )
        {
            int next = graf[v][i]; if ( next == p ) continue;
            int nroot = sons[1];
            if ( ( f[next] == -1 ? -1 : f[next] + 2 ) != sons[0] ) nroot = sons[0];
            dfs2( next, v, nroot );
        }
    }
    
    int main (int argc, const char * argv[])
    {
        //freopen("input.txt","r",stdin);
        //freopen("output.txt","w",stdout);
        scanf("%d%d%d", &n, &m, &d);
        for ( int i = 1; i <= m; i++ )
        {
            int a; scanf("%d", &a);
            ok[a] = true;
        }
        for ( int i = 1; i < n; i++ )
        {
            int a, b; scanf("%d%d", &a, &b);
            graf[a].pb(b);
            graf[b].pb(a);
        }
        dfs1( 1, -1 );
        dfs2( 1, -1, -1 );
        int ans = 0;
        for ( int i = 1; i <= n; i++ ) if ( max( f[i], g[i] ) <= d ) ans++;
        //for ( int i = 1; i <= n; i++ ) cout << i << " " << f[i] << " " << g[i] << endl;
        cout << ans << endl;
        return 0;
    }
    


  • 相关阅读:
    HarmonyOS三方件开发指南(5)——Photoview组件
    【2021年1月20日公开课】 多设备共享涂鸦画板的鸿蒙实现方式
    看透Spring MVC源代码分析与实践
    这道面试题,90%的人都不会
    Java多线程编程核心技术
    Head First设计模式
    美团面试题:为什么能直接调用userMapper接口的方法?
    七周七并发模型
    框架VS架构,看两者异同
    京东技术解密
  • 原文地址:https://www.cnblogs.com/pangblog/p/3293618.html
Copyright © 2011-2022 走看看