C - Sequence

Time Limit: 2 sec / Memory Limit: 256 MB

配点 : 300

問題文

長さ N の数列があり、i 番目の数は a_i です。 あなたは 1 回の操作でどれか 1 つの項の値を 1 だけ増やすか減らすことができます。

以下の条件を満たすために必要な操作回数の最小値を求めてください。

  • すべてのi (1≦i≦n) に対し、第 1 項から第 i 項までの和は 0 でない
  • すべてのi (1≦i≦n-1) に対し、i 項までの和と i+1 項までの和の符号が異なる

制約

  • 2≦ n ≦ 10^5
  • |a_i| ≦ 10^9
  • a_i は整数

入力

入力は以下の形式で標準入力から与えられる。

n
a_1 a_2 ... a_n

出力

必要な操作回数の最小値を出力せよ。


入力例 1

4
1 -3 1 0

出力例 1

4

例えば、数列を 1, -2, 2, -24 回の操作で変更することができます。この数列は 1, 2, 3, 4 項までの和がそれぞれ 1, -1, 1, -1 であるため、条件を満たしています。


入力例 2

5
3 -6 4 -5 7

出力例 2

0

はじめから条件を満たしています。


入力例 3

6
-1 4 3 2 -5 4

出力例 3

8

Score : 300 points

Problem Statement

You are given an integer sequence of length N. The i-th term in the sequence is a_i. In one operation, you can select a term and either increment or decrement it by one.

At least how many operations are necessary to satisfy the following conditions?

  • For every i (1≤i≤n), the sum of the terms from the 1-st through i-th term is not zero.
  • For every i (1≤i≤n-1), the sign of the sum of the terms from the 1-st through i-th term, is different from the sign of the sum of the terms from the 1-st through (i+1)-th term.

Constraints

  • 2 ≤ n ≤ 10^5
  • |a_i| ≤ 10^9
  • Each a_i is an integer.

Input

Input is given from Standard Input in the following format:

n
a_1 a_2 ... a_n

Output

Print the minimum necessary count of operations.


Sample Input 1

4
1 -3 1 0

Sample Output 1

4

For example, the given sequence can be transformed into 1, -2, 2, -2 by four operations. The sums of the first one, two, three and four terms are 1, -1, 1 and -1, respectively, which satisfy the conditions.


Sample Input 2

5
3 -6 4 -5 7

Sample Output 2

0

The given sequence already satisfies the conditions.


Sample Input 3

6
-1 4 3 2 -5 4

Sample Output 3

8
D - Alice&Brown

Time Limit: 2 sec / Memory Limit: 256 MB

配点 : 500

問題文

AliceとBrownはゲームをするのが好きです。今日は以下のゲームを思いつきました。

2つの山があり、はじめにX, Y個の石が置かれています。 AliceとBrownは毎ターン以下の操作を交互に行い、操作を行えなくなったプレイヤーは負けとなります。

  • 片方の山から 2i 個の石を取り、そのうち i 個の石を捨て、残りの i 個の石をもう片方の山に置く。ここで、整数 i (1≦i) の値は山に十分な個数の石がある範囲で自由に選ぶことができる。

Aliceが先手で、二人とも最適にプレイすると仮定したとき、与えられた X, Y に対しどちらのプレイヤーが勝つか求めてください。

制約

  • 0≦ X, Y ≦ 10^{18}

入力

入力は以下の形式で標準入力から与えられる。

X Y

出力

Aliceが勝つときAliceと、Brownが勝つときBrownと出力せよ。


入力例 1

2 1

出力例 1

Brown

Aliceは 2 個石のある山から 2 個取るしかありません。その結果、山の石の数はそれぞれ 0, 2 個となり、Brownは 2 個の石を取り、山の石の数はそれぞれ 1, 0 個となります。 Aliceはこれ以上操作を行うことができないので、Brownの勝ちです。


入力例 2

5 0

出力例 2

Alice

入力例 3

0 0

出力例 3

Brown

入力例 4

4 8

出力例 4

Alice

Score : 500 points

Problem Statement

Alice and Brown loves games. Today, they will play the following game.

In this game, there are two piles initially consisting of X and Y stones, respectively. Alice and Bob alternately perform the following operation, starting from Alice:

  • Take 2i stones from one of the piles. Then, throw away i of them, and put the remaining i in the other pile. Here, the integer i (1≤i) can be freely chosen as long as there is a sufficient number of stones in the pile.

The player who becomes unable to perform the operation, loses the game.

Given X and Y, determine the winner of the game, assuming that both players play optimally.

Constraints

  • 0 ≤ X, Y ≤ 10^{18}

Input

Input is given from Standard Input in the following format:

X Y

Output

Print the winner: either Alice or Brown.


Sample Input 1

2 1

Sample Output 1

Brown

Alice can do nothing but taking two stones from the pile containing two stones. As a result, the piles consist of zero and two stones, respectively. Then, Brown will take the two stones, and the piles will consist of one and zero stones, respectively. Alice will be unable to perform the operation anymore, which means Brown's victory.


Sample Input 2

5 0

Sample Output 2

Alice

Sample Input 3

0 0

Sample Output 3

Brown

Sample Input 4

4 8

Sample Output 4

Alice
E - Alice in linear land

Time Limit: 2 sec / Memory Limit: 256 MB

配点 : 900

問題文

Aliceは数直線の上に住んでいます。今日はある不思議な乗り物に乗って目的地まで行くことを考えました。 はじめ、Aliceは目的地から D 離れたところにいます。Aliceが乗り物にある数 x を入力すると、現在地から目的地に向かって x 進んだところが現在地より目的地に近いとき移動し、そうでないときは動きません。現在地から目的地までの距離が x 未満のとき、x 進んだところは目的地を通りすぎていることに注意してください。また、目的地を通り過ぎると進行方向が変わること、進行方向は何度も変わることがあることに注意してください。

Aliceは乗り物に N 回だけ数を入力し、i 番目に入力する数は d_i の予定でした。Aliceは入力する予定数の書かれたリストを作っておき、その数を 1 つずつ入力します。

しかしイタズラ好きの魔法使いが現れ、Aliceが N 回の入力による移動を終えても目的地にたどり着かないよう、リストの数を 1 つだけ書き換えることを考えました。

魔法使いはイタズラの実行のため以下の Q 個の計画を考えています。

  • q_i 回目に入力する数のみをある正整数に変更することで、Aliceが目的地にたどり着かないようにする

Q 個の計画それぞれが実行可能であるか答えるプログラムを書いてください。

制約

  • 1≦ N ≦ 5*10^5
  • 1≦ Q ≦ 5*10^5
  • 1≦ D ≦ 10^9
  • 1≦ d_i ≦ 10^9(1≦i≦N)
  • 1≦ q_i ≦ N(1≦i≦Q)
  • d_i, Dは整数である

入力

入力は以下の形式で標準入力から与えられる。

N D
d_1 d_2 ... d_N
Q
q_1 q_2 ... q_Q

出力

i 番目の計画が実行可能ならYES、そうでないならNOi 行目に出力せよ。


入力例 1

4 10
3 4 3 3
2
4 3

出力例 1

NO
YES

3 番目までの入力でAliceはすでに目的地にたどり着いているため、1 番目の計画の答えはNOです。

例えば、3 番目の入力を 5 にすると、Aliceは以下のような移動をし、目的地にたどり着くことはできないため、2 番目の計画の答えはYESです。


入力例 2

5 9
4 4 2 3 2
5
1 4 2 3 5

出力例 2

YES
YES
YES
YES
YES

もともと入力する予定のままでもAliceは目的地にたどり着けないため、すべての計画は実行可能です。


入力例 3

6 15
4 3 5 4 2 1
6
1 2 3 4 5 6

出力例 3

NO
NO
YES
NO
NO
YES

Score : 900 points

Problem Statement

Alice lives on a line. Today, she will travel to some place in a mysterious vehicle. Initially, the distance between Alice and her destination is D. When she input a number x to the vehicle, it will travel in the direction of the destination by a distance of x if this move would shorten the distance between the vehicle and the destination, and it will stay at its position otherwise. Note that the vehicle may go past the destination when the distance between the vehicle and the destination is less than x.

Alice made a list of N numbers. The i-th number in this list is d_i. She will insert these numbers to the vehicle one by one.

However, a mischievous witch appeared. She is thinking of rewriting one number in the list so that Alice will not reach the destination after N moves.

She has Q plans to do this, as follows:

  • Rewrite only the q_i-th number in the list with some integer so that Alice will not reach the destination.

Write a program to determine whether each plan is feasible.

Constraints

  • 1≤ N ≤ 5*10^5
  • 1≤ Q ≤ 5*10^5
  • 1≤ D ≤ 10^9
  • 1≤ d_i ≤ 10^9(1≤i≤N)
  • 1≤ q_i ≤ N(1≤i≤Q)
  • D and each d_i are integers.

Input

Input is given from Standard Input in the following format:

N D
d_1 d_2 ... d_N
Q
q_1 q_2 ... q_Q

Output

Print Q lines. The i-th line should contain YES if the i-th plan is feasible, and NO otherwise.


Sample Input 1

4 10
3 4 3 3
2
4 3

Sample Output 1

NO
YES

For the first plan, Alice will already arrive at the destination by the first three moves, and therefore the answer is NO. For the second plan, rewriting the third number in the list with 5 will prevent Alice from reaching the destination as shown in the following figure, and thus the answer is YES.


Sample Input 2

5 9
4 4 2 3 2
5
1 4 2 3 5

Sample Output 2

YES
YES
YES
YES
YES

Alice will not reach the destination as it is, and therefore all the plans are feasible.


Sample Input 3

6 15
4 3 5 4 2 1
6
1 2 3 4 5 6

Sample Output 3

NO
NO
YES
NO
NO
YES
F - Dam

Time Limit: 3 sec / Memory Limit: 256 MB

配点 : 900

問題文

あなたはダムを管理しています。ダムは L リットルまで水を蓄えることができます。ダムははじめ干からびています。また、毎日夜に好きな量の水を排出することができます。毎日朝にはダムに水が流入しますが、その時水が溢れないようにする必要があります。

i 日目の朝には t_i 度の水が v_i リットル流入することがわかっています。 各日について、あなたはその日の昼にダムにちょうど L リットルの水がたまっているという条件のもと、その時点でのダムの水温を最大化しようとすると何度になるかふと気になりました。各 i について水温の最大値を求めてください。ここで、各最大化のための水の排出は独立に考えるものとします。すなわち、i 日目の水温の最大化のために排出する水の量は、j(≠i) 日目の水温の最大化のために排出する水の量と異なっていても構いません。

ただし、水温は流れてくる水以外の一切の影響を受けないものとします。特に、T_1 度、V_1 リットルの水と T_2 度、V_2 リットルの水が混ざると \frac{T_1*V_1+T_2*V_2}{V_1+V_2} 度、V_1+V_2 リットルの水となり、これ以外で水の体積・温度が変化することはありません。

制約

  • 1≦ N ≦ 5*10^5
  • 1≦ L ≦ 10^9
  • 0≦ t_i ≦ 10^9(1≦i≦N)
  • 1≦ v_i ≦ L(1≦i≦N)
  • v_1 = L
  • L, v_i, t_i は整数である

入力

入力は以下の形式で標準入力から与えられる。

N L
t_1 v_1
t_2 v_2
:
t_N v_N

出力

i 日目の朝にダムに L リットル蓄えることのできる水温の最大値を i 行目に出力せよ。

答えは、相対誤差または絶対誤差が 10^{-6} 以下であれば許容される。


入力例 1

3 10
10 10
20 5
4 3

出力例 1

10.0000000
15.0000000
13.2000000
  • 1 日目には 1 日目に流れ込んだ水のみがあるので、必ず10度です。
  • 1 日目の夜に水を 5 リットル捨て、2 日目に流入する水と混ざると 10 リットル、15 度の水が 2 日目に蓄えられます。
  • 1 日目の夜に水を 8 リットル捨て、2, 3 日目に流入する水と混ざると 10 リットル、13.2度の水が 3 日目に蓄えられます。

入力例 2

4 15
0 15
2 5
3 6
4 4

出力例 2

0.0000000
0.6666667
1.8666667
2.9333333

入力例 3

4 15
1000000000 15
9 5
8 6
7 4

出力例 3

1000000000.0000000
666666669.6666666
400000005.0000000
293333338.8666667

水温は 100 度を超えることがありますが、蒸発については考えません。

Score : 900 points

Problem Statement

You are in charge of controlling a dam. The dam can store at most L liters of water. Initially, the dam is empty. Some amount of water flows into the dam every morning, and any amount of water may be discharged every night, but this amount needs to be set so that no water overflows the dam the next morning.

It is known that v_i liters of water at t_i degrees Celsius will flow into the dam on the morning of the i-th day. You are wondering about the maximum possible temperature of water in the dam at noon of each day, under the condition that there needs to be exactly L liters of water in the dam at that time. For each i, find the maximum possible temperature of water in the dam at noon of the i-th day. Here, consider each maximization separately, that is, the amount of water discharged for the maximization of the temperature on the i-th day, may be different from the amount of water discharged for the maximization of the temperature on the j-th day (j≠i).

Also, assume that the temperature of water is not affected by anything but new water that flows into the dam. That is, when V_1 liters of water at T_1 degrees Celsius and V_2 liters of water at T_2 degrees Celsius are mixed together, they will become V_1+V_2 liters of water at \frac{T_1*V_1+T_2*V_2}{V_1+V_2} degrees Celsius, and the volume and temperature of water are not affected by any other factors.

Constraints

  • 1≤ N ≤ 5*10^5
  • 1≤ L ≤ 10^9
  • 0≤ t_i ≤ 10^9(1≤i≤N)
  • 1≤ v_i ≤ L(1≤i≤N)
  • v_1 = L
  • L, each t_i and v_i are integers.

Input

Input is given from Standard Input in the following format:

N L
t_1 v_1
t_2 v_2
:
t_N v_N

Output

Print N lines. The i-th line should contain the maximum temperature such that it is possible to store L liters of water at that temperature in the dam at noon of the i-th day.

Each of these values is accepted if the absolute or relative error is at most 10^{-6}.


Sample Input 1

3 10
10 10
20 5
4 3

Sample Output 1

10.0000000
15.0000000
13.2000000
  • On the first day, the temperature of water in the dam is always 10 degrees: the temperature of the only water that flows into the dam on the first day.

  • 10 liters of water at 15 degrees of Celsius can be stored on the second day, by discharging 5 liters of water on the night of the first day, and mix the remaining water with the water that flows into the dam on the second day.

  • 10 liters of water at 13.2 degrees of Celsius can be stored on the third day, by discharging 8 liters of water on the night of the first day, and mix the remaining water with the water that flows into the dam on the second and third days.


Sample Input 2

4 15
0 15
2 5
3 6
4 4

Sample Output 2

0.0000000
0.6666667
1.8666667
2.9333333

Sample Input 3

4 15
1000000000 15
9 5
8 6
7 4

Sample Output 3

1000000000.0000000
666666669.6666666
400000005.0000000
293333338.8666667

Although the temperature of water may exceed 100 degrees Celsius, we assume that water does not vaporize.