COCI '10 Contest 4 #5 Dugovi

View as PDF

Submit solution


Points: 12 (partial)
Time limit: 1.0s
Memory limit: 32M

Problem types

In a little town called Križ live N people. Each of them has borrowed some money from exactly one other inhabitant. Now the time has come to pay back all the debts, but the problem is that everybody has spent all of their money!

The major of Križ has decided to solve this problem. The town will give money to a few people so that they can pay back their debts. When some people get their money back, a chain reaction is started - for example: person A gets money from the city. Person A uses that money to pay the debt toward person B. Person B then uses that money to pay the debt towards person C etc. If person B didn't have enough money to pay back the debt, they wait until they get enough. If they have more than enough money, person B will keep what is left after payback.

Another example: if two people live in Križ, and they owe \$100 to each other, the town will give \$100 to one of them so they can pay back the debt to the other one.

Your task is to calculate the minimum total amount of money the town has to give to some subset of the inhabitants so that after the payback protocol described above all debts are paid.

Input Specification

First line of input contains one integer N (2 \le N \le 200\,000), number of inhabitants of Križ. They are numbered from 1 to N.

The following N lines contain two integers, separated by space. In i^\text{th} of those lines, first number - A_i represents the id of the person i^\text{th} person owes money to (1 \le A_i \le N, A_i \ne i), and second B_i represents the amount of the debt in \$ (1 \le B_i \le 10\,000).

Output Specification

First and only line of output should contain one integer - the minimum total amount of money the town has to give to its inhabitants so all debts are paid.

Sample Input 1

4
2 100
1 100
4 70
3 70

Sample Output 1

170

Sample Input 2

3
2 120
3 50
2 80

Sample Output 2

150

Sample Input 3

5
3 30
3 20
4 100
5 40
3 60

Sample Output 3

110

Comments

There are no comments at the moment.