CF1388D.Captain Flint and Treasure

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

Captain Fint is involved in another treasure hunt, but have found only one strange problem. The problem may be connected to the treasure's location or may not. That's why captain Flint decided to leave the solving the problem to his crew and offered an absurdly high reward: one day off. The problem itself sounds like this...

There are two arrays aa and bb of length nn . Initially, an ansans is equal to 00 and the following operation is defined:

  1. Choose position ii ( 1in1 \le i \le n );
  2. Add aia_i to ansans ;
  3. If bi1b_i \neq -1 then add aia_i to abia_{b_i} .

What is the maximum ansans you can get by performing the operation on each ii ( 1in1 \le i \le n ) exactly once?

Uncle Bogdan is eager to get the reward, so he is asking your help to find the optimal order of positions to perform the operation on them.

输入格式

The first line contains the integer nn ( 1n21051 \le n \le 2 \cdot 10^5 ) — the length of arrays aa and bb .

The second line contains nn integers a1,a2,,ana_1, a_2, \ldots, a_n ( 106ai106−10^6 \le a_i \le 10^6 ).

The third line contains nn integers b1,b2,,bnb_1, b_2, \ldots, b_n ( 1bin1 \le b_i \le n or bi=1b_i = -1 ).

Additional constraint: it's guaranteed that for any ii ( 1in1 \le i \le n ) the sequence bi,bbi,bbbi,b_i, b_{b_i}, b_{b_{b_i}}, \ldots is not cyclic, in other words it will always end with 1-1 .

输出格式

In the first line, print the maximum ansans you can get.

In the second line, print the order of operations: nn different integers p1,p2,,pnp_1, p_2, \ldots, p_n ( 1pin1 \le p_i \le n ). The pip_i is the position which should be chosen at the ii -th step. If there are multiple orders, print any of them.

输入输出样例

  • 输入#1

    3
    1 2 3
    2 3 -1

    输出#1

    10
    1 2 3
  • 输入#2

    2
    -1 100
    2 -1

    输出#2

    99
    2 1
  • 输入#3

    10
    -10 -1 2 2 5 -2 -3 -4 2 -6
    -1 -1 2 2 -1 5 5 7 7 9

    输出#3

    -9
    3 5 6 1 9 4 10 7 8 2
首页