CF975C.Valhalla Siege

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

The first line contains two integers nn and qq ( 1n,q2000001 \le n, q \leq 200\,000 ) — the number of warriors and the number of minutes in the battle.

The second line contains nn integers a1,a2,,ana_1, a_2, \ldots, a_n ( 1ai1091 \leq a_i \leq 10^9 ) that represent the warriors' strengths.

The third line contains qq integers k1,k2,,kqk_1, k_2, \ldots, k_q ( 1ki10141 \leq k_i \leq 10^{14} ), the ii -th of them represents Lagertha's order at the ii -th minute: kik_i arrows will attack the warriors.

输入格式

Output qq lines, the ii -th of them is the number of standing warriors after the ii -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.
首页