Codeforces-975C - Valhalla Siege - 思维

news/2024/11/29 22:54:15/

题解链接:

https://www.lucien.ink/archives/204/


题目链接:

http://codeforces.com/contest/975/problem/C


题目:

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 n n warriors, he places them on a straight line in front of the main gate, in a way that the i-th warrior stands right after (i1) ( i − 1 ) -th warrior. The first warrior leads the attack.

Each attacker can take up to ai a i arrows before he falls to the ground, where ai a i is the i i -th warrior’s strength.

Lagertha orders her warriors to shoot ki arrows during the i i -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 t, they will all be standing to fight at the end of minute t t .

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

Input

The first line contains two integers n n and q(1n,q200 000) — the number of warriors and the number of minutes in the battle.

The second line contains n n integers a1,a2,,an(1ai109) that represent the warriors’ strengths.

The third line contains q q integers k1,k2,kq(1ki1014), the i i -th of them represents Lagertha’s order at the i-th minute: ki k i arrows will attack the warriors.

Output

Output q q lines, the i-th of them is the number of standing warriors after the i i -th minute.

Examples

input

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.


题意:

  你有n个士兵,每个士兵的生命值为ai,有q轮攻击,每轮攻击的伤害值为 ki k i ,如果在某一轮中士兵全部死光了,那么在这一轮结束的时候就会全部复活,且这一轮攻击剩下的伤害就会被忽略,问你每轮攻击结束后你会有多少个士兵。


思路:

  对n个士兵的生命值记一下前缀和,每轮攻击的时候用upper_bound找一下前缀和里第一个大于 ki k i 的值所对应的编号,假设这一轮中upper_bound的结果为cur,那么前cur - 1个士兵一定全部死完了,所以就会剩下n - cur + 1个士兵。


实现:

#include <bits/stdc++.h>
typedef long long ll;
const int maxn = int(2e5) + 7;
ll a[maxn], k[maxn], sum[maxn], dmg;int main() {
//    freopen("in.txt", "r", stdin);int n, q;scanf("%d%d", &n, &q);for (int i = 1; i <= n; i++) scanf("%lld", a + i), sum[i] = sum[i - 1] + a[i];for (int i = 1; i <= q; i++) scanf("%lld", k + i);for (int turn = 1, cur; turn <= q; turn++) {dmg += k[turn];if (dmg >= sum[n]) dmg = 0, printf("%d\n", n);else printf("%d\n", n - int(std::upper_bound(sum + 1, sum + 1 + n, dmg) - sum - 1));}return 0;
}

http://www.ppmy.cn/news/535921.html

相关文章

CF 975D Ghost 数学(基础)

题意:yaxb的直线上有n个点,给出这n个点的(x[i],vx[i],vy[i]),(vx[i],vy[i]为第i个点x,y的速度) 当两个点碰撞时,总价值2.n<2e5,-1e9<x[i]<1e9.问总价值为多少? 若(x1,vx1,vy1),(x2,vx2,vy2)能在t秒相遇 x1t*vx[1] x2t*vx[2] y1t*vy[1] y2t*vy[2] 则 (x2-x1)/(vx[…

简历不要随意给猎头!他们会胡乱投递,影响你之后求职!

猎头是求职的重要途径之一&#xff0c;但猎头群体良莠不齐&#xff0c;并不是每个猎头都值得信任。 一位网友就对猎头持怀疑态度&#xff0c;问大家&#xff1a; 简历可以随意给猎头吗&#xff1f;给他们的时候需要注意什么&#xff1f;他们会不会群发&#xff0c;对自己之后求…

柯尼卡美能达

一、技术维修代表模式功能设置步骤! 步骤&#xff1a; 按效用/计数器键&#xff1b; 触摸&#xff3b;Check Detail&#xff3d;&#xff1b; 依照此顺序按以下各个键。停止→ 0 → 0 → 停止 → 0 → 1&#xff1b; 输入8 位数字的维修密码&#xff0c;然后触摸&#xff3…

<C语言> 数组

1.一维数组的创建和初始化。 1.1 数组的创建 数组是一组相同类型元素的集合。 使用以下方式声明一个一维数组&#xff1a; type arrayName[arraySize];type是数组中元素的类型&#xff0c;arrayName是数组的名称&#xff0c;arraySize是数组的大小&#xff08;即元素的个数&a…

yolo格式visdrone转换

目录 yolo格式转换1. Visdrone2019格式转换 yolo格式转换 1. Visdrone2019格式转换 数据集下载地址https://aistudio.baidu.com/aistudio/datasetdetail/115729 如果是visdrone数据集&#xff0c;直接使用txt2xml.py去转换&#xff0c;修改annotation和img的路径&#xff0c…

ProGuard混淆及R8优化

前言&#xff1a;使用java编写的源代码编译后生成了对于的class文件&#xff0c;市面上很多软件都可以对class文件进行反编译&#xff0c;况且Android开发的应用程序是用Java代码写的&#xff0c;为了很好的保护Java源代码&#xff0c;我们需要对编译好后的class文件进行混淆。…

数据猿·金猿榜丨2017中国智能语音领域最具潜力创业公司

【数据猿导读】 “2017中国智能语音领域最具潜力创业公司”盘点源于数据猿推出的“金猿榜”系列内容&#xff0c;旨在通过媒体的方式与原则&#xff0c;发掘大数据领域最具潜力的创新型企业 编辑 | sharon 官网 | www.datayuan.cn 微信公众号ID | datayuancn “2017中国智能语音…

揭秘OPhone白手起家前后:一个系统的诞生

转载说明&#xff1a;一个新生事务的诞生&#xff0c;给一些人会可能带来一些生存的威胁&#xff0c;给另外一些人可能会带来一些机会&#xff0c;最近手机操作系统大战硝烟弥漫&#xff0c;如果能掌握好这个机会&#xff0c;对于开发人员来来说可能会带来一笔小财&#xff0c;…