CF1193B.Magic Tree

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

We have a magic tree: a rooted tree on nn vertices. The vertices are numbered 11 through nn . Vertex 11 is the root.

The magic tree gives us magic fruit. The fruit only grows in vertices of the tree other than the root. Each vertex contains at most one piece of fruit.

It is now day 0 and no fruit is ripe yet. Each fruit will only be ripe for a single day. For each fruit, we are given the vertex vjv_j where it grows, the day djd_j on which it will be ripe, and the amount wjw_j of magic juice we can extract from it if we harvest it when it is ripe.

The fruits have to be harvested by cutting some branches of the tree. On each day, you may cut as many branches of the tree as you like. The parts of the tree you cut off will fall to the ground and you can collect all the ripe fruits they contain. All fruits that fall to the ground when they are not ripe are discarded and no magic juice is collected from them.

Formally, on each day, you may erase some edges of the tree. Whenever you do so, the tree will split into multiple connected components. You then erase all components that do not contain the root and you harvest all ripe fruits those components contained.

Given is a description of the tree together with the locations, ripening days and juiciness of all mm fruits. Calculate the maximum total amount of magic juice we can harvest from the tree.

输入格式

The first line contains three space-separated integers nn ( 2n100,0002 \le n \le 100,000 ), mm ( 1mn11 \le m \le n-1 ) and kk ( 1k100,0001 \le k \le 100,000 ) – the number of vertices, the number of fruits, and the maximum day on which a fruit may become ripe.

The following n1n-1 lines contain the integers p2,,pnp_2, \dots, p_n , one per line. For each ii (from 22 to nn , inclusive), vertex pip_i ( 1pii11 \leq p_i \le i-1 ) is the parent of vertex ii .

Each of the last mm lines describes one fruit. The jj -th of these lines has the form " vj dj wjv_j\ d_j\ w_j " ( 2vjn2 \le v_j \le n , 1djk1 \le d_j \le k , 1wj1091 \le w_j \le 10^9 ).

It is guaranteed that no vertex contains more than one fruit (i.e., the values vjv_j are distinct).

输出格式

Output a single line with a single integer, the maximum amount of magic juice we can harvest from the tree.

Scoring

Subtask 1 (6 points): n,k20n, k \leq 20 , and wj=1w_j = 1 for all jj

Subtask 2 (3 points): fruits only grow in the leaves of the tree

Subtask 3 (11 points): pi=i1p_i = i-1 for each ii , and wj=1w_j = 1 for all jj

Subtask 4 (12 points): k2k \leq 2

Subtask 5 (16 points): k20k \leq 20 , and wj=1w_j = 1 for all jj

Subtask 6 (13 points): m1,000m \leq 1,000

Subtask 7 (22 points): wj=1w_j = 1 for all jj

Subtask 8 (17 points): no additional constraints

输入输出样例

  • 输入#1

    6 4 10
    1
    2
    1
    4
    4
    3 4 5
    4 7 2
    5 4 1
    6 9 3
    

    输出#1

    9
    

说明/提示

In the example input, one optimal solution looks as follows:

  • On day 4, cut the edge between vertices 4 and 5 and harvest a ripe fruit with 1 unit of magic juice. On the same day, cut the edge between vertices 1 and 2 and harvest 5 units of magic juice from the ripe fruit in vertex 3.
  • On day 7, do nothing. (We could harvest the fruit in vertex 4 that just became ripe, but doing so is not optimal.)
  • On day 9, cut the edge between vertices 1 and 4. Discard the fruit in vertex 4 that is no longer ripe, and harvest 3 units of magic juice from the ripe fruit in vertex 6. (Alternately, we could achieve the same effect by cutting the edge between vertices 4 and 6.)
首页