CF1213G.Path Queries
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
You are given a weighted tree consisting of n vertices. Recall that a tree is a connected graph without cycles. Vertices ui and vi are connected by an edge with weight wi .
You are given m queries. The i -th query is given as an integer qi . In this query you need to calculate the number of pairs of vertices (u,v) ( u<v ) such that the maximum weight of an edge on a simple path between u and v doesn't exceed qi .
输入格式
The first line of the input contains two integers n and m ( 1≤n,m≤2⋅105 ) — the number of vertices in the tree and the number of queries.
Each of the next n−1 lines describes an edge of the tree. Edge i is denoted by three integers ui , vi and wi — the labels of vertices it connects ( 1≤ui,vi≤n , ui=vi ) and the weight of the edge ( 1≤wi≤2⋅105 ). It is guaranteed that the given edges form a tree.
The last line of the input contains m integers q1,q2,…,qm ( 1≤qi≤2⋅105 ), where qi is the maximum weight of an edge in the i -th query.
输出格式
Print m integers — the answers to the queries. The i -th value should be equal to the number of pairs of vertices (u,v) ( u<v ) such that the maximum weight of an edge on a simple path between u and v doesn't exceed qi .
Queries are numbered from 1 to m in the order of the 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
输出#1
21 7 15 21 3
输入#2
1 2 1 2
输出#2
0 0
输入#3
3 3 1 2 1 2 3 2 1 3 2
输出#3
1 3 3
说明/提示
The picture shows the tree from the first example: