C. Valhalla Siege
time limit per test

2 seconds

memory limit per test

256 megabytes

input

standard input

output

standard output

Ivar the Boneless is a great leader. He is trying to capture Kattegat from Lagertha. The war has begun and wave after wave Ivar's warriors are falling in battle.

Ivar has nn warriors, he places them on a straight line in front of the main gate, in a way that the ii-th warrior stands right after(i−1)(i−1)-th warrior. The first warrior leads the attack.

Each attacker can take up to aiai arrows before he falls to the ground, where aiai is the ii-th warrior's strength.

Lagertha orders her warriors to shoot kiki arrows during the ii-th minute, the arrows one by one hit the first still standing warrior. After all Ivar's warriors fall and all the currently flying arrows fly by, Thor smashes his hammer and all Ivar's warriors get their previous strengths back and stand up to fight again. In other words, if all warriors die in minute tt, they will all be standing to fight at the end of minute tt.

The battle will last for qq minutes, after each minute you should tell Ivar what is the number of his standing warriors.

Input

The first line contains two integers nn and qq (1≤n,q≤2000001≤n,q≤200000) — the number of warriors and the number of minutes in the battle.

The second line contains nn integers a1,a2,…,ana1,a2,…,an (1≤ai≤1091≤ai≤109) that represent the warriors' strengths.

The third line contains qq integers k1,k2,…,kqk1,k2,…,kq (1≤ki≤10141≤ki≤1014), the ii-th of them represents Lagertha's order at the ii-th minute: kiki arrows will attack the warriors.

Output

Output qq lines, the ii-th of them is the number of standing warriors after the ii-th minute.

Examples
input

Copy
5 5
1 2 1 2 1
3 10 1 1 1
output
3
5
4
4
3
input
4 4
1 2 3 4
9 1 10 6
output
1
4
4
1
Note

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.

这题其实就是一个前缀和二分查找。

 #include <cstdio>
#include <algorithm>
#include <vector>
#include <queue>
#include <cstring>
#include <string>
using namespace std;
const int maxn = 2e5 + ;
long long a[maxn], b[maxn], sum[maxn], sum1[maxn];
int main() {
long long n, q;
while(scanf("%lld%lld", &n, &q) != EOF) {
sum[] = ;
for (long long i = ; i <= n ; i++) {
scanf("%lld", &a[i]);
sum[i] = sum[i - ] + a[i];
}
for (long long i = ; i <= q ; i++) {
scanf("%lld", &b[i]);
}
long long temp = , cnt, ret = ;
for (long long i = ; i <= q ; i++) {
cnt = upper_bound(sum + , sum + n + , sum[temp] + b[i] + ret) - sum - ;
ret = a[cnt + ] - (sum[cnt + ] - sum[temp] - b[i] - ret);
if (ret == a[cnt + ]) ret = ;
temp = cnt;
if (temp == n ) {
temp = ;
ret = ;
}
printf("%lld\n", n - temp);
}
}
return ;
}

最新文章

  1. Dynamic CRM 查询实体记录 被共享给了 哪个用户
  2. centos 安装ffmpeg
  3. 【Android测试】【随笔】Android Studio环境搭建
  4. java编解码技术,netty nio
  5. ubuntu 14 安装 JDK
  6. 关于javascript输出中文乱码的问题
  7. Manacher思想 SCOI2013 密码
  8. python列表的一些常用方法以及函数
  9. Hibernate缓存集成IMDG
  10. Hack Programming
  11. FAIR开源Detectron:整合全部顶尖目标检测算法
  12. C#以太坊基础入门
  13. kubernetes 基础
  14. eclipse搭建j2ee
  15. C++ 空字符(&#39;\0&#39;)和空格符(&#39; &#39;)
  16. php composer 使用 以及 psr0和psr4的真正区别
  17. UI5-学习篇-9-本地Eclipse UI5应用发布到SAP前端服务器
  18. 一个查询指定错误记录数据表错误记录条数的shell脚本
  19. 日记整理----&gt;2016-11-25
  20. Permutation Index I &amp; II

热门文章

  1. Redis缓存数据库的安装与配置(3)
  2. R语言学习笔记(十六):构建分割点函数
  3. 最短路径问题 3.Bellman-Ford算法
  4. SQL Server中2008及以上 ldf 文件过大的解决方法
  5. ios下 active 演示激活
  6. Autofac小例子
  7. Python 3基础教程27-字典
  8. pytest 测试报告
  9. python中socket、socketio、flask-socketio、WebSocket的区别与联系
  10. kaldi学习 - 一脚本流学习工具使用