102595: [AtCoder]ABC259 F - Select Edges
Description
Score : $500$ points
Problem Statement
You are given a tree with $N$ vertices. For each $i = 1, 2, \ldots, N-1$, the $i$-th edge connects Vertex $u_i$ and Vertex $v_i$ and has a weight $w_i$.
Consider choosing some of the $N-1$ edges (possibly none or all). Here, for each $i = 1, 2, \ldots, N$, one may choose at most $d_i$ edges incident to Vertex $i$. Find the maximum possible total weight of the chosen edges.
Constraints
- $2 \leq N \leq 3 \times 10^5$
- $1 \leq u_i, v_i \leq N$
- $-10^9 \leq w_i \leq 10^9$
- $d_i$ is a non-negative integer not exceeding the degree of Vertex $i$.
- The given graph is a tree.
- All values in input are integers.
Input
Input is given from Standard Input in the following format:
$N$ $d_1$ $d_2$ $\ldots$ $d_N$ $u_1$ $v_1$ $w_1$ $u_2$ $v_2$ $w_2$ $\vdots$ $u_{N-1}$ $v_{N-1}$ $w_{N-1}$
Output
Print the answer.
Sample Input 1
7 1 2 1 0 2 1 1 1 2 8 2 3 9 2 4 10 2 5 -3 5 6 8 5 7 3
Sample Output 1
28
If you choose the $1$-st, $2$-nd, $5$-th, and $6$-th edges, the total weight of those edges is $8 + 9 + 8 + 3 = 28$. This is the maximum possible.
Sample Input 2
20 0 2 0 1 2 1 0 0 3 0 1 1 1 1 0 0 3 0 1 2 4 9 583 4 6 -431 5 9 325 17 6 131 17 2 -520 2 16 696 5 7 662 17 15 845 7 8 307 13 7 849 9 19 242 20 6 909 7 11 -775 17 18 557 14 20 95 18 10 646 4 3 -168 1 3 -917 11 12 30
Sample Output 2
2184
Input
题意翻译
给定一棵 $n$ 个节点的树,每条边有一个权值 $w_i$。 现要求选择一些边,使得每个节点 $i$ 相邻的边中被选中的不超过 $d_i$ 条,请求出最大边权和。Output
问题描述
给你一棵有$N$个顶点的树。对于每个$i = 1, 2, \ldots, N-1$,第$i$条边连接顶点$u_i$和顶点$v_i$,权重为$w_i$。
考虑选择其中的一些边(可以是任意多或任意少)。这里,对于每个$i = 1, 2, \ldots, N$,顶点$i$最多可以选择$d_i$条与其相邻的边。找到所选边的最大可能总权重。
约束
- $2 \leq N \leq 3 \times 10^5$
- $1 \leq u_i, v_i \leq N$
- $-10^9 \leq w_i \leq 10^9$
- $d_i$是一个不超过顶点$i$的度数的非负整数。
- 给定的图是一棵树。
- 输入中的所有值都是整数。
输入
从标准输入按以下格式给出输入:
$N$ $d_1$ $d_2$ $\ldots$ $d_N$ $u_1$ $v_1$ $w_1$ $u_2$ $v_2$ $w_2$ $\vdots$ $u_{N-1}$ $v_{N-1}$ $w_{N-1}$
输出
打印答案。
样例输入1
7 1 2 1 0 2 1 1 1 2 8 2 3 9 2 4 10 2 5 -3 5 6 8 5 7 3
样例输出1
28
如果你选择第1条、第2条、第5条和第6条边,这些边的总权重为$8 + 9 + 8 + 3 = 28$。这是可能的最大值。
样例输入2
20 0 2 0 1 2 1 0 0 3 0 1 1 1 1 0 0 3 0 1 2 4 9 583 4 6 -431 5 9 325 17 6 131 17 2 -520 2 16 696 5 7 662 17 15 845 7 8 307 13 7 849 9 19 242 20 6 909 7 11 -775 17 18 557 14 20 95 18 10 646 4 3 -168 1 3 -917 11 12 30
样例输出2
2184