#include <bits/stdc++.h>
using namespace std;
template<typename T>
void out(T x) { cout << x << endl; exit(0); }
#define watch(x) cout << (#x) << " is " << (x) << endl
using ll = long long;
const ll mod = 1e9+7;
const int maxn = 1e5 + 5;
int n, q, k;
struct node {
int ptr;
vector<ll> versions;
node() {
ptr=0;
versions.clear();
}
node(ll val) {
ptr=0;
versions.clear();
while (val>0) {
versions.push_back(val);
val/=k;
}
versions.push_back(0);
}
void incr() {
ptr++;
}
ll get(int offset) {
int len = versions.size();
return versions[min(len-1, ptr+offset)];
}
};
ll a[maxn];
node t[4*maxn];
bool mark[4*maxn];
node merge(node left, node right) {
vector<ll> versions;
for (int o=0; ; o++) {
ll L = left.get(o);
ll R = right.get(o);
versions.push_back(L+R);
if (L+R==0) break;
}
node res;
res.ptr = 0;
res.versions = versions;
return res;
}
void build(int v, int tl, int tr) {
if (tl==tr) {
t[v] = node(a[tl]);
} else {
int tm=(tl+tr)/2;
build(2*v,tl,tm);
build(2*v+1,tm+1,tr);
t[v]=merge(t[v*2],t[v*2+1]);
}
}
void push(int v) {
if (mark[v]) {
t[2*v].incr();
t[2*v+1].incr();
mark[2*v]=mark[2*v+1]=true;
mark[v]=false;
}
}
void upd(int v, int tl, int tr, int i, ll val) {
if (tl==tr) {
t[v] = node(val);
} else {
push(v);
int tm=(tl+tr)/2;
if (i<=tm) {
upd(2*v,tl,tm,i,val);
} else {
upd(2*v+1,tm+1,tr,i,val);
}
t[v]=merge(t[v*2],t[v*2+1]);
}
}
void spray(int v, int tl, int tr, int l, int r) {
if (l>r) return;
if (l==tl && tr==r) {
t[v].incr();
mark[v]=true;
return;
}
push(v);
int tm=(tl+tr)/2;
spray(2*v,tl,tm,l,min(tm,r));
spray(2*v+1,tm+1,tr,max(tm+1,l),r);
t[v]=merge(t[v*2],t[v*2+1]);
}
ll qry(int v, int tl, int tr, int l, int r) {
if (l>r) return 0;
if (l==tl && tr==r) {
return t[v].get(0);
}
push(v);
int tm=(tl+tr)/2;
ll left = qry(2*v,tl,tm,l,min(tm,r));
ll right = qry(2*v+1,tm+1,tr,max(tm+1,l),r);
return left+right;
}
void setValue(int i, ll val) {
upd(1,1,n,i,val);
}
void spray(int l, int r) {
spray(1,1,n,l,r);
}
ll rangeSum(int l, int r) {
return qry(1,1,n,l,r);
}
int main() {
ios_base::sync_with_stdio(false); cin.tie(0); cout.tie(0);
cin>>n>>q>>k;
for (int i=1; i<=n; i++) {
cin>>a[i];
}
build(1,1,n);
while (q--) {
int type;
cin>>type;
if (type==1) {
int i, val;
cin>>i>>val;
setValue(i, val);
}
if (type==2) {
int l, r;
cin>>l>>r;
spray(l,r);
}
if (type==3) {
int l, r;
cin>>l>>r;
cout<<rangeSum(l,r)<<"\n";
}
}
return 0;
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
18 ms |
12928 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
779 ms |
524292 KB |
Execution killed with signal 9 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
132 ms |
13944 KB |
Output is correct |
2 |
Correct |
90 ms |
16384 KB |
Output is correct |
3 |
Correct |
131 ms |
16620 KB |
Output is correct |
4 |
Correct |
370 ms |
16120 KB |
Output is correct |
5 |
Correct |
577 ms |
21752 KB |
Output is correct |
6 |
Correct |
612 ms |
21624 KB |
Output is correct |
7 |
Runtime error |
620 ms |
524292 KB |
Execution killed with signal 9 |
8 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
731 ms |
27512 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |