zoukankan      html  css  js  c++  java
  • CF div2 321 C

    C. Kefa and Park
    time limit per test
    2 seconds
    memory limit per test
    256 megabytes
    input
    standard input
    output
    standard output

    Kefa decided to celebrate his first big salary by going to the restaurant.

    He lives by an unusual park. The park is a rooted tree consisting of n vertices with the root at vertex 1. Vertex 1 also contains Kefa's house. Unfortunaely for our hero, the park also contains cats. Kefa has already found out what are the vertices with cats in them.

    The leaf vertices of the park contain restaurants. Kefa wants to choose a restaurant where he will go, but unfortunately he is very afraid of cats, so there is no way he will go to the restaurant if the path from the restaurant to his house contains more than m consecutive vertices with cats.

    Your task is to help Kefa count the number of restaurants where he can go.

    Input

    The first line contains two integers, n and m (2 ≤ n ≤ 105, 1 ≤ m ≤ n) — the number of vertices of the tree and the maximum number of consecutive vertices with cats that is still ok for Kefa.

    The second line contains n integers a1, a2, ..., an, where each ai either equals to 0 (then vertex i has no cat), or equals to 1 (then vertex i has a cat).

    Next n - 1 lines contains the edges of the tree in the format "xi yi" (without the quotes) (1 ≤ xi, yi ≤ n, xi ≠ yi), where xi and yi are the vertices of the tree, connected by an edge.

    It is guaranteed that the given set of edges specifies a tree.

    Output

    A single integer — the number of distinct leaves of a tree the path to which from Kefa's home contains at most m consecutive vertices with cats.

    Sample test(s)
    Input
    4 1
    1 1 0 0
    1 2
    1 3
    1 4
    Output
    2
    Input
    7 1
    1 0 1 1 0 0 0
    1 2
    1 3
    2 4
    2 5
    3 6
    3 7
    Output
    2
    Note

    Let us remind you that a tree is a connected graph on n vertices and n - 1 edge. A rooted tree is a tree with a special vertex called root. In a rooted tree among any two vertices connected by an edge, one vertex is a parent (the one closer to the root), and the other one is a child. A vertex is called a leaf, if it has no children.

    Note to the first sample test: The vertices containing cats are marked red. The restaurants are at vertices 2, 3, 4. Kefa can't go only to the restaurant located at vertex 2.

    Note to the second sample test: The restaurants are located at vertices 4, 5, 6, 7. Kefa can't go to restaurants 6, 7.

    裸的DFS 然而我这弱,写的丑。。。一直过不了,最后喵了一眼题解~~!

    #include <cstdio>
    #include <iostream>
    #include <cstring>
    #include <vector>
    
    using namespace std;
    
    const int maxn = 100055;
    
    vector<int>G[maxn];
    
    int a[maxn];
    
    void add_edge(int u,int v)
    {
        G[u].push_back(v);
        G[v].push_back(u);
    }
    
    int ans;
    int n,m;
    int vis[maxn];
    int cnt;
    void dfs(int u, int p, int c)
    {
        bool leaf = true;
        if (!a[u]) c = 0;
        else c++;
        if (c > m) return;
        for (int i = 0; i < G[u].size(); i++)
        {
            int v = G[u][i];
            if (v == p) continue;
            dfs(v, u, c);
            leaf = false;
        }
    
        if (leaf) cnt++;
    }
    
    
    int main()
    {
    
        scanf("%d%d",&n,&m);
        for(int i=0;i<n;i++){
            scanf("%d",&a[i]);
        }
        for(int i=1;i<n;i++){
            int x,y;
            scanf("%d%d",&x,&y);
            x--;
            y--;
            add_edge(x,y);
        }
        cnt = 0;
        dfs(0,-1,0);
    
        printf("%d
    ",cnt);
    
    
        return 0;
    }
    View Code
  • 相关阅读:
    如何创建数据库及表
    验证视图状态MAC失败解决方案
    ELK(elasticsearch+logstash+kibana)实现Java分布式系统日志分析架构
    使用Servlet3.0提供的API实现文件上传
    CentOS 6.4下安装MySQL 5.6.22
    CentOS下安装MySQL-server-5.6
    linux下彻底卸载mysql 图解教程
    表白用,有需要的可以转
    Eclipse常用快捷键
    DAO和DTO的区别
  • 原文地址:https://www.cnblogs.com/lmlyzxiao/p/4834059.html
Copyright © 2011-2022 走看看