C. Letters1000 / 双指针

Posted 幽殇默

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C. Letters1000 / 双指针相关的知识,希望对你有一定的参考价值。


https://codeforces.com/problemset/problem/978/C

#include<bits/stdc++.h>
using namespace std;
typedef long long int LL;
const int N=1e5*2+10;
int n,m;
LL a[N],b[N];
int main(void) 
{
	cin>>n>>m;
	for(int i=1;i<=n;i++) cin>>a[i];
	for(int i=1;i<=m;i++) cin>>b[i];
	LL sum=0,i=1,j=1; 
	while(i<=m)
	{
		while(sum+a[j]<b[i]) sum+=a[j],j++;
		cout<<j<<" "<<b[i]-sum<<endl;
		i++;
	}
}

以上是关于C. Letters1000 / 双指针的主要内容,如果未能解决你的问题,请参考以下文章

传递双精度值返回未知值C.

C. Unstable String(双指针)

Codeforces231 C. To Add or Not to Add(贪心,双指针)

C. Letters (前缀和二分查找)

C. Swap Letters 01字符串最少交换几次相等

Codeforces Round #481 (Div. 3) C. Letters