CF GYM 100741 A Queries
7160 단어 CodeForces데이터 구조
Guess what he asked me, when he knew that I am a programmer? Yep, indeed, he asked me to write a program which could process these queries (n is the length of the sequence):
s l r mod You have to output the sum of numbers in the interval which are equal mod (modulo m). () () Input The first line of each test case contains the number of elements of the sequence n and the number m. (1 ≤ n ≤ 10000) (1 ≤ m ≤ 10)
The second line contains n initial numbers of the sequence. (0 ≤ number ≤ 1000000000)
The third line of each test case contains the number of queries q (1 ≤ q ≤ 10000).
The following q lines contains the queries (one query per line).
Output Output q lines - the answers to the queries.
Examples input 3 4 1 2 3 3 s 1 3 2 + 2 1 - 1 2 output 2 3 1
#include
#define MAXN 10010
#define LL long long
using namespace std;
struct BIT {
LL c[MAXN];
int n;
int lowbit(int x){ return x&(-x); }
void modify(int x,LL y) {
for(;x<=n;x+=lowbit(x)) c[x]+=y;
}
LL query(int x){
LL ret=0;
for(;x;x-=lowbit(x)) ret+=c[x];
return ret;
}
LL query(int l,int r){ return query(r)-query(l-1); }
}bit[20];
int n,m,T;
LL a[MAXN];
int main() {
scanf("%d%d",&n,&m);
for(int i=0; i<m; i++) bit[i].n=n;
for(int i=1; i<=n; i++) {
scanf("%lld",&a[i]);
bit[a[i]%m].modify(i,a[i]);
}
scanf("%d",&T);
while(T--){
int x,y,z;
char opt[10];
scanf("%s%d%d",opt,&x,&y);
if(opt[0]=='+'){
bit[a[x]%m].modify(x,-a[x]);
a[x]+=y;
bit[a[x]%m].modify(x,a[x]);
printf("%lld
",a[x]);
}
if(opt[0]=='-'){
if(a[x]<y) printf("%lld
",a[x]);
else {
bit[a[x]%m].modify(x,-a[x]);
a[x]-=y;
bit[a[x]%m].modify(x,a[x]);
printf("%lld
",a[x]);
}
}
if(opt[0]=='s'){
scanf("%d",&z);
printf("%lld
",bit[z].query(x,y));
}
}
return 0;
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
문제 풀이 보고서 의 CodeForces 91B QueueOtherwise, print the i-th walrus's displeasure: the number of other walruses that stand between him and the furthest fro...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.