#P1213G. Path Queries

    ID: 2231 Type: RemoteJudge 3000ms 256MiB Tried: 0 Accepted: 0 Difficulty: (None) Uploaded By: Tags>divide and conquerdsugraphssortingstrees*1800

Path Queries

No submission language available for this problem.

Description

You are given a weighted tree consisting of nn vertices. Recall that a tree is a connected graph without cycles. Vertices uiu_i and viv_i are connected by an edge with weight wiw_i.

You are given mm queries. The ii-th query is given as an integer qiq_i. In this query you need to calculate the number of pairs of vertices (u,v)(u, v) (u<vu < v) such that the maximum weight of an edge on a simple path between uu and vv doesn't exceed qiq_i.

The first line of the input contains two integers nn and mm (1n,m21051 \le n, m \le 2 \cdot 10^5) — the number of vertices in the tree and the number of queries.

Each of the next n1n - 1 lines describes an edge of the tree. Edge ii is denoted by three integers uiu_i, viv_i and wiw_i — the labels of vertices it connects (1ui,vin1 \le u_i, v_i \le n, uiviu_i \ne v_i) and the weight of the edge (1wi21051 \le w_i \le 2 \cdot 10^5). It is guaranteed that the given edges form a tree.

The last line of the input contains mm integers q1,q2,,qmq_1, q_2, \dots, q_m (1qi21051 \le q_i \le 2 \cdot 10^5), where qiq_i is the maximum weight of an edge in the ii-th query.

Print mm integers — the answers to the queries. The ii-th value should be equal to the number of pairs of vertices (u,v)(u, v) (u<vu < v) such that the maximum weight of an edge on a simple path between uu and vv doesn't exceed qiq_i.

Queries are numbered from 11 to mm in the order of the input.

Input

The first line of the input contains two integers nn and mm (1n,m21051 \le n, m \le 2 \cdot 10^5) — the number of vertices in the tree and the number of queries.

Each of the next n1n - 1 lines describes an edge of the tree. Edge ii is denoted by three integers uiu_i, viv_i and wiw_i — the labels of vertices it connects (1ui,vin1 \le u_i, v_i \le n, uiviu_i \ne v_i) and the weight of the edge (1wi21051 \le w_i \le 2 \cdot 10^5). It is guaranteed that the given edges form a tree.

The last line of the input contains mm integers q1,q2,,qmq_1, q_2, \dots, q_m (1qi21051 \le q_i \le 2 \cdot 10^5), where qiq_i is the maximum weight of an edge in the ii-th query.

Output

Print mm integers — the answers to the queries. The ii-th value should be equal to the number of pairs of vertices (u,v)(u, v) (u<vu < v) such that the maximum weight of an edge on a simple path between uu and vv doesn't exceed qiq_i.

Queries are numbered from 11 to mm in the order of the input.

Samples

Sample Input 1

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

Sample Output 1

21 7 15 21 3

Sample Input 2

1 2
1 2

Sample Output 2

0 0

Sample Input 3

3 3
1 2 1
2 3 2
1 3 2

Sample Output 3

1 3 3

Note

The picture shows the tree from the first example: