CF283B.Cow Program

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

Farmer John has just given the cows a program to play with! The program contains two integer variables, xx and yy , and performs the following operations on a sequence a1,a2,...,ana_{1},a_{2},...,a_{n} of positive integers:

  1. Initially, x=1x=1 and y=0y=0 . If, after any step, x<=0x<=0 or x>n , the program immediately terminates.
  2. The program increases both xx and yy by a value equal to axa_{x} simultaneously.
  3. The program now increases yy by axa_{x} while decreasing xx by axa_{x} .
  4. The program executes steps 2 and 3 (first step 2, then step 3) repeatedly until it terminates (it may never terminate). So, the sequence of executed steps may start with: step 2, step 3, step 2, step 3, step 2 and so on.

The cows are not very good at arithmetic though, and they want to see how the program works. Please help them!

You are given the sequence a2,a3,...,ana_{2},a_{3},...,a_{n} . Suppose for each ii (1<=i<=n1)(1<=i<=n-1) we run the program on the sequence i,a2,a3,...,ani,a_{2},a_{3},...,a_{n} . For each such run output the final value of yy if the program terminates or -1 if it does not terminate.

输入格式

The first line contains a single integer, nn ( 2<=n<=21052<=n<=2·10^{5} ). The next line contains n1n-1 space separated integers, a2,a3,...,ana_{2},a_{3},...,a_{n} ( 1<=ai<=1091<=a_{i}<=10^{9} ).

输出格式

Output n1n-1 lines. On the ii -th line, print the requested value when the program is run on the sequence i,a2,a3,...ani,a_{2},a_{3},...a_{n} .

Please do not use the %lld specifier to read or write 64-bit integers in С++. It is preferred to use the cin, cout streams or the %I64d specifier.

输入输出样例

  • 输入#1

    4
    2 4 1
    

    输出#1

    3
    6
    8
    
  • 输入#2

    3
    1 2
    

    输出#2

    -1
    -1
    

说明/提示

In the first sample

  1. For i=1,i=1, xx becomes and yy becomes 1+2=31+2=3 .
  2. For i=2,i=2, xx becomes and yy becomes 2+4=6.2+4=6.
  3. For i=3,i=3, xx becomes and yy becomes 3+1+4=8.3+1+4=8.
首页