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

Usoperanto

Usoperanto

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

Usoperanto is an artificial spoken language designed and regulated by Usoperanto Academy. The academy is now in study to establish Strict Usoperanto, a variation of the language intended for formal documents.

In Usoperanto, each word can modify at most one other word, and modifiers are always put before modifiees. For example, with a noun uso ("truth") modified by an adjective makka ("total"), people say makka uso, not uso makka. On the other hand, there have been no rules about the order among multiple words modifying the same word, so in case uso is modified by one more adjective beta ("obvious"), people could say both makka beta uso and beta makka uso.

In Strict Usoperanto, the word order will be restricted according to modification costs. Words in a phrase must be arranged so that the total modification cost is minimized. Each pair of a modifier and a modifiee is assigned a cost equal to the number of letters between the two words; the total modification cost is the sum of the costs over all modifier-modifiee pairs in the phrase. For example, the pair of makka and uso in a phrase makka beta uso has the cost of 4 for beta (four letters). As the pair of beta and uso has no words in between and thus the cost of zero, makka beta uso has the total modification cost of 4. Similarly beta makka uso has the total modification cost of 5. Applying the "minimum total modification cost" rule, makka beta uso is preferred to beta makka uso in Strict Usoperanto.

Your mission in this problem is to write a program that, given a set of words in a phrase, finds the correct word order in Strict Usoperanto and reports the total modification cost.

Вхідні дані

The format of the input is as follows.

N

M_0 L_0

M_{N−1} L_{N−1}

The first line contains an integer N (1N10^6). ^N is the number of words in a phrase.

Each of the following N lines contains two integers M_i (1M_i10) and L_i (−1L_iN−1, L_ii) describing the i-th word (0iN−1). M_i is the number of the letters in the word. L_i specifies the modification: L_{i }= −1 indicates it does not modify any word; otherwise it modifies the L_i-th word.

Note the first sample input below can be interpreted as the uso-beta-makka case.

Вихідні дані

Print the total modification cost.

Приклад

Вхідні дані #1
3
3 -1
4 0
5 0
Вихідні дані #1
4
Джерело JAG Summer 2012, Japan