이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
using namespace std;
constexpr int sz = 2e5 + 5;
int n, q, a[sz], tree[2][sz];
inline void update(int pos, int val, int bj){
while(pos <= n){
tree[bj][pos] ^= val;
pos += (pos & (-pos));
}
return;
}
inline int get_ans(int l, int r, int bj){
if(l ^ 1) return get_ans(1, r, bj) ^ get_ans(1, l - 1, bj);
int res(0);
while(r > 0){
res ^= tree[bj][r];
r -= (r & (-r));
}
return res;
}
signed main(){
ios_base::sync_with_stdio(0), cin.tie(0);
cin >> n >> q;
for(register int i = 1; i <= n; ++i){
cin >> a[i];
update(i, a[i], i & 1);
}
int type, l, r;
while(q--){
cin >> type >> l >> r;
if(type == 1){
update(l, a[l], l & 1);
a[l] = r;
update(l, a[l], l & 1);
}else{
if(~(r - l + 1) & 1){
cout << 0 << '\n';
}else{
cout << get_ans(l, r, l & 1) << '\n';
}
}
}
}
컴파일 시 표준 에러 (stderr) 메시지
xoranges.cpp: In function 'int main()':
xoranges.cpp:43:19: warning: ISO C++17 does not allow 'register' storage class specifier [-Wregister]
43 | for(register int i = 1; i <= n; ++i){
| ^
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |