CF580C.Kefa and Park

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

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 nn vertices with the root at vertex 11 . Vertex 11 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 mm consecutive vertices with cats.

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

输入格式

The first line contains two integers, nn and mm ( 2<=n<=1052<=n<=10^{5} , 1<=m<=n1<=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 nn integers a1,a2,...,ana_{1},a_{2},...,a_{n} , where each aia_{i} either equals to 00 (then vertex ii has no cat), or equals to 11 (then vertex ii has a cat).

Next n1n-1 lines contains the edges of the tree in the format " xix_{i} yiy_{i} " (without the quotes) ( 1<=xi,yi<=n1<=x_{i},y_{i}<=n , xiyix_{i}≠y_{i} ), where xix_{i} and yiy_{i} are the vertices of the tree, connected by an edge.

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

输出格式

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

输入输出样例

  • 输入#1

    4 1
    1 1 0 0
    1 2
    1 3
    1 4
    

    输出#1

    2
    
  • 输入#2

    7 1
    1 0 1 1 0 0 0
    1 2
    1 3
    2 4
    2 5
    3 6
    3 7
    

    输出#2

    2
    

说明/提示

Let us remind you that a tree is a connected graph on nn vertices and n1n-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 22 .

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

首页