CF975C.Valhalla Siege
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
The first line contains two integers n and q ( 1≤n,q≤200000 ) — the number of warriors and the number of minutes in the battle.
The second line contains n integers a1,a2,…,an ( 1≤ai≤109 ) that represent the warriors' strengths.
The third line contains q integers k1,k2,…,kq ( 1≤ki≤1014 ), the i -th of them represents Lagertha's order at the i -th minute: ki arrows will attack the warriors.
输入格式
Output q lines, the i -th of them is the number of standing warriors after the i -th minute.
输出格式
In the first example:
- after the 1-st minute, the 1-st and 2-nd warriors die.
- after the 2-nd minute all warriors die (and all arrows left over are wasted), then they will be revived thus answer is 5 — all warriors are alive.
- after the 3-rd minute, the 1-st warrior dies.
- after the 4-th minute, the 2-nd warrior takes a hit and his strength decreases by 1.
- after the 5-th minute, the 2-nd warrior dies.
输入输出样例
输入#1
5 5 1 2 1 2 1 3 10 1 1 1
输出#1
3 5 4 4 3
输入#2
4 4 1 2 3 4 9 1 10 6
输出#2
1 4 4 1
说明/提示
In the first example:
- after the 1-st minute, the 1-st and 2-nd warriors die.
- after the 2-nd minute all warriors die (and all arrows left over are wasted), then they will be revived thus answer is 5 — all warriors are alive.
- after the 3-rd minute, the 1-st warrior dies.
- after the 4-th minute, the 2-nd warrior takes a hit and his strength decreases by 1.
- after the 5-th minute, the 2-nd warrior dies.