#include <bits/stdc++.h>
#define ll long long
#define pb push_back
#define left (node<<1),l,((l+r)>>1)
#define right ((node<<1)|1),((l+r)>>1) + 1,r
using namespace std;
const int N = 200005;
ll c[N],odd[4*N],even[4*N],a[N];
bool D = 1;
void build(int node,int l,int r){
if (l == r){
if (l%2) odd[node] = a[l];
else even[node] = a[l];
return;
}
build(left),build(right);
odd[node] = odd[(node<<1)]^odd[((node<<1)|1)];
even[node] = even[(node<<1)]^even[((node<<1)|1)];
}
void upd(int node,int l,int r,int idx,ll val){
if (l == r){
if (c[l]) {
if (l%2) odd[node] = val,even[node] = 0;
else even[node] = val,odd[node] = 0;
}
return;
}
if (idx > (l+r)>>1) upd(right,idx,val);
else upd(left,idx,val);
odd[node] = odd[(node<<1)]^odd[((node<<1)|1)];
even[node] = even[(node<<1)]^even[((node<<1)|1)];
}
ll get(int node,int l,int r,int L,int R){
if (r < L || R < l) return 0;
if (L <= l && r <= R) {
if (D) return odd[node];
return even[node];
}
ll x = get(left,L,R),y = get(right,L,R);
return x^y;
}
int main (){
ios_base::sync_with_stdio(0),cin.tie(NULL),cout.tie(NULL);
int n,q;
cin>>n>>q;
for (int i=1;i<=n;i++)
cin>>a[i],c[i] = (i*(n - i + 1))%2;
build(1,1,n);
while(q--){
int tp,x,y;
cin>>tp>>x>>y;
if (tp == 1) upd(1,1,n,x,y);
else {
D = 1;
if (!(x%2)) D = 0;
cout<<get(1,1,n,x,y)<<"\n";
}
}
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
1 ms |
332 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
1 ms |
332 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
1 ms |
332 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
254 ms |
18464 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
1 ms |
332 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |