CF533B.Work Group

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

One Big Software Company has nn employees numbered from 11 to nn . The director is assigned number 11 . Every employee of the company except the director has exactly one immediate superior. The director, of course, doesn't have a superior.

We will call person aa a subordinates of another person bb , if either bb is an immediate supervisor of aa , or the immediate supervisor of aa is a subordinate to person bb . In particular, subordinates of the head are all other employees of the company.

To solve achieve an Important Goal we need to form a workgroup. Every person has some efficiency, expressed by a positive integer aia_{i} , where ii is the person's number. The efficiency of the workgroup is defined as the total efficiency of all the people included in it.

The employees of the big software company are obsessed with modern ways of work process organization. Today pair programming is at the peak of popularity, so the workgroup should be formed with the following condition. Each person entering the workgroup should be able to sort all of his subordinates who are also in the workgroup into pairs. In other words, for each of the members of the workgroup the number of his subordinates within the workgroup should be even.

Your task is to determine the maximum possible efficiency of the workgroup formed at observing the given condition. Any person including the director of company can enter the workgroup.

输入格式

The first line contains integer nn ( 1<=n<=21051<=n<=2·10^{5} ) — the number of workers of the Big Software Company.

Then nn lines follow, describing the company employees. The ii -th line contains two integers pi,aip_{i},a_{i} ( 1<=ai<=1051<=a_{i}<=10^{5} ) — the number of the person who is the ii -th employee's immediate superior and ii -th employee's efficiency. For the director p1=1p_{1}=-1 , for all other people the condition 1<=p_{i}<i is fulfilled.

输出格式

Print a single integer — the maximum possible efficiency of the workgroup.

输入输出样例

  • 输入#1

    7
    -1 3
    1 2
    1 1
    1 4
    4 5
    4 3
    5 2
    

    输出#1

    17
    

说明/提示

In the sample test the most effective way is to make a workgroup from employees number 1,2,4,5,61,2,4,5,6 .

首页