3683.Cow Program

Time Limit: 1s Memory Limit: 256MB

Farmer John has just given the cows a program to play with! The program contains two integer variables, x and y, and performs the following operations on a sequence a1,a2,...,an of positive integers: Initially, x=1 and y=0. If, after any step, x \le 0 or x \gt n, the program immediately terminates. The program increases both x and y by a value equal to ax simultaneously. The program now increases y by ax while decreasing x by ax. 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,...,an. Suppose for each i (1 \le i \le n-1) we run the program on the sequence i,a2,a3,...,an. For each such run output the final value of y if the program terminates or -1 if it does not terminate.

Input Format(From the terminal/stdin)

Input The first line contains a single integer, n (2 \le n \le 2 \cdot 105). The next line contains n-1 space separated integers, a2,a3,...,an (1 \le ai \le 109).

Output Format(To the terminal/stdout)

Output Output n-1 lines. On the i-th line, print the requested value when the program is run on the sequence i,a2,a3,...an.Please do not use the %lld specifier to read or write 64-bit integers in C++. It is preferred to use the cin, cout streams or the %I64d specifier.

Sample Input 1

Copy
4
2 4 1
 \n
 · · \n

Sample Output 1

Copy
3
6
8
 \n
 \n
 \n

Sample Input 2

Copy
3
1 2
 \n
 · \n

Sample Output 2

Copy
-1
-1
  \n
  \n

Hints

In the first sample For i=1, x becomes 3683_1.png and y becomes 1+2=3. For i=2, x becomes 3683_2.png and y becomes 2+4=6. For i=3, x becomes 3683_3.png and y becomes 3+1+4=8.

Submit

请先 登录

© 2025 FAQs