#include<bits/stdc++.h>
using namespace std;
long long pre[100005];
long long n,k;
long long b1[100005],b2[100005];
void update(long long bit[], long long v, long long x){
while(v<=n){
bit[v]+=x;
v+=v&(-v);
}
}
void up(long long l, long long r, long long x){
update(b1, l, x);
update(b1, r+1, -x);
update(b2, l, (l-1)*x);
update(b2, r+1, -r*x);
}
long long presum(long long bit[], long long v){
long long s=0;
while(v>0){
s+=bit[v];
v-=v&(-v);
}
return s;
}
long long sum(long long l,long long r){
return presum(b1, r)*r-presum(b2, r)-(presum(b1, l-1)*(l-1)-presum(b2, l-1));
}
int main(){
cin>>n>>k;
long long a[n+1];
long long prefix=0;
for(long long i=1; i<=n; i++){
cin>>a[i];
prefix+=a[i];
up(i,i,prefix);
}
long long q;
cin>>q;
while(q--){
long long x;
cin>>x;
if(x==1){
long long b[k+1];
for(long long i=1; i<=k; i++){
cin>>b[i];
}
up(b[k],n,a[b[1]]-a[b[k]]);
for(long long i=1; i<k; i++){
up(b[i],n, a[b[i+1]]-a[b[i]] );
}
continue;
}
long long l,r,m;
cin>>l>>r>>m;
long long s=0;
s+=sum(l+m-1, r);
s-=sum(l-1, r-m);
cout<<s<<endl;
}
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1 ms |
304 KB |
Output is correct |
2 |
Correct |
3 ms |
332 KB |
Output is correct |
3 |
Correct |
6 ms |
332 KB |
Output is correct |
4 |
Correct |
9 ms |
384 KB |
Output is correct |
5 |
Correct |
10 ms |
524 KB |
Output is correct |
6 |
Correct |
12 ms |
512 KB |
Output is correct |
7 |
Correct |
14 ms |
580 KB |
Output is correct |
8 |
Correct |
18 ms |
692 KB |
Output is correct |
9 |
Correct |
26 ms |
844 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
51 ms |
1420 KB |
Output is correct |
2 |
Correct |
83 ms |
1936 KB |
Output is correct |
3 |
Correct |
133 ms |
2600 KB |
Output is correct |
4 |
Correct |
188 ms |
4668 KB |
Output is correct |
5 |
Correct |
286 ms |
6440 KB |
Output is correct |
6 |
Correct |
285 ms |
6228 KB |
Output is correct |
7 |
Correct |
287 ms |
6256 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
150 ms |
2784 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |