#CODEFESTIVAL2016FINALH. Tokaido

Tokaido

Score : 16001600 points

Problem Statement

There are NN squares in a row, numbered 11 through NN from left to right. Snuke and Rng are playing a board game using these squares, described below:

  1. First, Snuke writes an integer into each square.
  2. Each of the two players possesses one piece. Snuke places his piece onto square 11, and Rng places his onto square 22.
  3. The player whose piece is to the left of the opponent's, moves his piece. The destination must be a square to the right of the square where the piece is currently placed, and must not be a square where the opponent's piece is placed.
  4. Repeat step 3. When the pieces cannot be moved any more, the game ends.
  5. The score of each player is calculated as the sum of the integers written in the squares where the player has placed his piece before the end of the game.

Snuke has already written an integer AiA_i into square i(1iN1)i (1 \leq i \leq N-1), but not into square NN yet. He has decided to calculate for each of MM integers X1,X2,...,XMX_1,X_2,...,X_M, if he writes it into square NN and the game is played, what the value "(Snuke's score) - (Rng's score)" will be. Here, it is assumed that each player moves his piece to maximize the value "(the player's score) - (the opponent's score)".

Constraints

  • 3N200,0003 \leq N \leq 200,000
  • 0Ai1060 \leq A_i \leq 10^6
  • The sum of all AiA_i is at most 10610^6.
  • 1M200,0001 \leq M \leq 200,000
  • 0Xi1090 \leq X_i \leq 10^9

Partial Scores

  • 700700 points will be awarded for passing the test set satisfying M=1M=1.
  • Additional 900900 points will be awarded for passing the test set without additional constraints.

Input

The input is given from Standard Input in the following format:

NN

A1A_1 A2A_2 ...... AN1A_{N-1}

MM

X1X_1

X2X_2

::

XMX_M

Output

For each of the MM integers X1,...,XMX_1, ..., X_M, print the value "(Snuke's score) - (Rng's score)" if it is written into square NN, one per line.

5
2 7 1 8
1
2
0

The game proceeds as follows, where S represents Snuke's piece, and R represents Rng's.

Both player scores 1010, thus "(Snuke's score) - (Rng's score)" is 00.

9
2 0 1 6 1 1 2 6
5
2016
1
1
2
6
2001
6
6
7
7