eolymp
bolt
Try our new interface for solving problems
Problems

Daily Division

Daily Division

Oostende Beach is a very long beach located in the north of Belgium. On this beach, there are n huts located along a straight line. People can rent a room in one of those huts to spend their beach vacations together with the other tenants.

Every day at lunch time, a food truck rides by to serve fries to the guests. The truck will park in front of one of the huts and people will form two queues. The people staying in huts to the left of the food truck will queue on the left, and the people to the right of the food truck will queue together on the right. The people staying in the hut in front of the food truck will split their group in half, one half going to the left queue and the other half going to the right queue. If this is an odd number of people, the remaining person will go to the queue with fewer people, or choose one randomly if the queues have the same length. The food truck will always position itself so that the difference between the number of people in the left queue and the number of people in the right queue is as small as possible.

Each night the number of guests in exactly one of the huts changes. Can you help the food truck find the best position for each day?

Input

First line consists of two integers n (1n105), the number of huts, and q (1q105), the number of days. Second line has n integers a0, ..., an−1 satisfying 1ai106 for 0i < n, where ai is the current number of people in hut i. Then follow q lines with two integers i (0i < n) and x (1x106). The j-th of these lines indicates that at day j the number of people in hut i changes to x.

Output

Print q lines: the optimal position of the foodtruck after each of the q nights. If there are multiple optimal positions, print the smallest one.

Time limit 1 second
Memory limit 128 MiB
Input example #1
5 4
3 1 3 4 2
0 5
0 9
4 5
2 1
Output example #1
2
1
2
1
Input example #2
4 8
1 1 1 1
2 2
1 2
2 1
1 1
3 2
2 2
1 2
2 1
Output example #2
1
1
1
1
1
2
2
2
Source 2018 Benelux Algorithm Programming Contest (BAPC), Preliminaries, Problem D