#include <bits/stdc++.h>
#define endl '\n'
using namespace std;
const long long maxn=1e5+5;
long long n,k,q;
long long a[maxn],b[32];
long long tree[4*maxn];
long long ql,qr;
void make_tree(long long v, long long l, long long r)
{
if(l==r)
{
tree[v]=a[r];
return;
}
long long mid=(l+r)/2;
make_tree(v*2,l,mid);
make_tree(v*2+1,mid+1,r);
tree[v]=tree[v*2]+tree[v*2+1];
}
long long query(long long v, long long l, long long r)
{
if(r<ql||l>qr||l>r) return 0;
if(l>=ql&&r<=qr) return tree[v];
long long mid=(l+r)/2;
return query(v*2,l,mid)+query(v*2+1,mid+1,r);
}
void read()
{
cin >> n >> k;
for(long long i=1;i<=n;i++)
{
cin >> a[i];
}
cin >> q;
make_tree(1,1,n);
long long ty,l,r,m;
for(long long i=1;i<=q;i++)
{
cin >> ty;
if(ty==1)
{
cin >> b[1];
}
else
{
cin >> l >> r >> m;
long long sum=0;
long long ch=0;
long long j=l;
long long z=l+m-1;
ql=j;
qr=z;
sum+=query(1,1,n);
z++;
j++;
for(z;z<=r;z++)
{
ql=j;
qr=z;
sum+=query(1,1,n);
j++;
}
cout << sum << endl;
}
}
}
int main()
{
ios_base::sync_with_stdio(false);
cin.tie(0);
cout.tie(0);
read();
return 0;
}
/*
8 1
7 2 5 1 9 3 4 6
3
2 2 7 4
1 1
2 2 7 3
*/
Compilation message
Main.cpp: In function 'void read()':
Main.cpp:61:17: warning: statement has no effect [-Wunused-value]
61 | for(z;z<=r;z++)
| ^
Main.cpp:53:23: warning: unused variable 'ch' [-Wunused-variable]
53 | long long ch=0;
| ^~
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1 ms |
212 KB |
Output is correct |
2 |
Correct |
46 ms |
356 KB |
Output is correct |
3 |
Correct |
192 ms |
388 KB |
Output is correct |
4 |
Correct |
496 ms |
420 KB |
Output is correct |
5 |
Correct |
901 ms |
684 KB |
Output is correct |
6 |
Correct |
1405 ms |
636 KB |
Output is correct |
7 |
Execution timed out |
2058 ms |
652 KB |
Time limit exceeded |
8 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Execution timed out |
2083 ms |
996 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Execution timed out |
2061 ms |
1860 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |