eolymp
bolt
Спробуйте наш новий інтерфейс для відправки розв'язків
Задачі

Family Fortune

Family Fortune

Ліміт часу 10 секунд
Ліміт використання пам'яті 32 MiB

While studying the history of wealthy families, researchers want to know just how much of a fortune each family has amassed. There are various 'net worth' figures for each individual throughout history, but totaling them is complicated by double counting, caused by inheritance. One way to estimate the wealth of a family is to sum up the net worth of a set of K people such that no one in the set is an ancestor or a descendant of anyone else in the set. The wealth of the family is the maximum sum achievable over all such sets of K people. Since historical records contain only the net worth of male family members, the family tree is a simple tree in which every male has exactly one father and a non-negative number of sons. Also, there is exactly one person who is an ancestor of all other family members.

Given information about a family tree, what is the wealth of the family, by this measure?

Вхідні дані

There will be several test cases in the input. Each test case will begin with two integers:

N K

Where N (1N100,000) is the total number of family members in the records, and K (1K1,000) is the size of the desired set of people.

Each of the next N lines will hold two integers:

P W

Where P (0PN) indicates the parent of that family member. The family members are numbered from 1 to N, with the parent and fortune of family member i appearing on the i^th line. There will be a single root, with P=0. The tree will not have a depth greater than 1,000, and, of course, it won't have any cycles. W (1W1,000) is the wealth (in millions) of that family member.

The input will end with a line with two 0s.

Вихідні дані

For each test case, output a single integer on its own line, which is the maximum sum (in millions) of the fortunes of a set of K family members in the tree, where no member of the set is an ancestor or descendant of any other member of the set. If you cannot find K such nodes, then output 0. Output no extra spaces, and do not separate answers with blank lines.

Приклад

Вхідні дані #1
11 5
0 1
1 1
1 1
2 1
2 1
3 1
3 1
3 1
5 1
7 1
7 1
11 5
11 3
1 1
4 1
1 2
10 2
10 2
6 2
6 1
10 2
11 3
0 4
7 3
0 18
1 20
1 15
2 12
2 6
3 8
3 8
0 0
Вихідні дані #1
5
10
36
Джерело 2011 ACM ICPC Southeast USA Regional Programming Contest