CF1662G.Gastronomic Event

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

SWERC organizers want to hold a gastronomic event.

The location of the event is a building with nn rooms connected by n1n-1 corridors (each corridor connects two rooms) so that it is possible to go from any room to any other room.

In each room you have to set up the tasting of a typical Italian dish. You can choose from nn typical Italian dishes rated from 11 to nn depending on how good they are ( nn is the best possible rating). The nn dishes have distinct ratings.

You want to assign the nn dishes to the nn rooms so that the number of pleasing tours is maximal. A pleasing tour is a nonempty sequence of rooms so that:

  • Each room in the sequence is connected to the next one in the sequence by a corridor.
  • The ratings of the dishes in the rooms (in the order given by the sequence) are increasing.

If you assign the nn dishes optimally, what is the maximum number of pleasing tours?

输入格式

The first line contains an integer nn ( 2n10000002\le n\le 1\,000\,000 ) — the number of rooms.

The second line contains n1n-1 integers p2,p3,,pnp_2, p_3, \cdots , p_n ( 1pi<i1 \leq p_i < i ). Each pip_i indicates that there is a corridor between room ii and room pip_i . It is guaranteed that the building has the property that it is possible to go from any room to any other room.

输出格式

Print the maximum number of pleasing tours.

输入输出样例

  • 输入#1

    5
    1 2 2 2

    输出#1

    13
  • 输入#2

    10
    1 2 3 4 3 2 7 8 7

    输出#2

    47

说明/提示

In the first sample, it is optimal to place the dish with rating 11 in room 11 , the dish with rating 22 in room 33 , the dish with rating 33 in room 22 , the dish with rating 44 in room 55 and the dish with rating 55 in room 44 .

All the 1313 possible pleasing tours are: (1)(1) , (2)(2) , (3)(3) , (4)(4) , (5)(5) , (1,2)(1,2) , (3,2)(3,2) , (2,4)(2,4) , (2,5)(2,5) , (1,2,4)(1,2,4) , (1,2,5)(1,2,5) , (3,2,4)(3,2,4) , (3,2,5)(3,2,5) .

There are also other ways to assign the dishes to the rooms so that there are 1313 pleasing tours.

首页