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 n shamans in total enumerated with integers from 1 to n 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 n 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 q 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 n and q ( 1<=n,q<=2⋅105 ).
The second line contains n integers a1,...,an ( 0<=ai<=109 ), where ai is the magic power of the i -th shaman.
After that q lines follow, the i -th of them contains two integers pi and xi ( 1<=pi<=n , 0<=xi<=109 ) that mean that the new power of the pi -th shaman is xi .
输出格式
Print q lines, the i -th of them should contain −1 , if after the i -th change there are no shaman-kings, and otherwise a single integer j , where j is an index of some king-shaman after the i -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) . The answer equals −1 , because the sum of powers of shamans before the first shaman is equal to 0 , and before the second is equal to 2 .
In the second example after the first change the powers are equal to (1,2,3) . The answer is equal to 3 , because the power of the third shaman is equal to 3 , and the sum of powers of the first and the second shaman is also 1+2=3 . After the second change the powers become equal to (2,2,3) , where the answer equals 2 . After the third change the powers become equal to (2,4,3) , where the answer equals −1 . After the fourth change the powers become equal to (2,4,6) , where the answer equals 3 .