CF992E.Nastya and King-Shamans

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

Nastya likes reading and even spends whole days in a library sometimes. Today she found a chronicle of Byteland in the library, and it stated that there lived shamans long time ago. It is known that at every moment there was exactly one shaman in Byteland, and there were nn shamans in total enumerated with integers from 11 to nn in the order they lived. Also, each shaman had a magic power which can now be expressed as an integer.

The chronicle includes a list of powers of the nn shamans. Also, some shamans can be king-shamans, if they gathered all the power of their predecessors, i.e. their power is exactly the sum of powers of all previous shamans. Nastya is interested in whether there was at least one king-shaman in Byteland.

Unfortunately many of the powers are unreadable in the list, so Nastya is doing the following:

  • Initially she supposes some power for each shaman.
  • After that she changes the power of some shaman qq times (the shamans can differ) and after that wants to check if there is at least one king-shaman in the list. If yes, she wants to know the index of any king-shaman.

Unfortunately the list is too large and Nastya wants you to help her.

输入格式

The first line contains two integers nn and qq ( 1<=n,q<=21051<=n,q<=2·10^{5} ).

The second line contains nn integers a1,...,ana_{1},...,a_{n} ( 0<=ai<=1090<=a_{i}<=10^{9} ), where aia_{i} is the magic power of the ii -th shaman.

After that qq lines follow, the ii -th of them contains two integers pip_{i} and xix_{i} ( 1<=pi<=n1<=p_{i}<=n , 0<=xi<=1090<=x_{i}<=10^{9} ) that mean that the new power of the pip_{i} -th shaman is xix_{i} .

输出格式

Print qq lines, the ii -th of them should contain 1-1 , if after the ii -th change there are no shaman-kings, and otherwise a single integer jj , where jj is an index of some king-shaman after the ii -th change.

If there are multiple king-shamans after each change, print the index of any of them.

输入输出样例

  • 输入#1

    2 1
    1 3
    1 2
    

    输出#1

    -1
    
  • 输入#2

    3 4
    2 2 3
    1 1
    1 2
    2 4
    3 6
    

    输出#2

    3
    2
    -1
    3
    
  • 输入#3

    10 7
    0 3 1 4 6 2 7 8 10 1
    2 5
    1 3
    9 36
    4 10
    4 9
    1 2
    1 0
    

    输出#3

    1
    -1
    9
    -1
    4
    -1
    1
    

说明/提示

In the first example powers of shamans after the first change are equal to (2,3)(2,3) . The answer equals 1-1 , because the sum of powers of shamans before the first shaman is equal to 00 , and before the second is equal to 22 .

In the second example after the first change the powers are equal to (1,2,3)(1,2,3) . The answer is equal to 33 , because the power of the third shaman is equal to 33 , and the sum of powers of the first and the second shaman is also 1+2=31+2=3 . After the second change the powers become equal to (2,2,3)(2,2,3) , where the answer equals 22 . After the third change the powers become equal to (2,4,3)(2,4,3) , where the answer equals 1-1 . After the fourth change the powers become equal to (2,4,6)(2,4,6) , where the answer equals 33 .

首页