/*
* Created at 4:36 PM on 17 May, 2022
*/
//#pragma GCC optimize("Ofast")
//#pragma GCC optimize("unroll-loops")
//#pragma GCC target("sse,sse2,sse3,ssse3,sse4,popcnt,abm,mmx,avx,avx2,tune=native")
#include <iostream>
#include <cmath>
#include <vector>
#include <algorithm>
#include <cstring>
#include <map>
#include <set>
#include <numeric>
#include <cassert>
#include <functional>
using namespace std;
#define rep(i,a,b) for(auto (i)=a;(i)<(b);(i)++)
#define list(i,N) for(auto (i)=0;(i)<(N);(i)++)
#define ALL(a) (a).begin(),(a).end()
#define RALL(a) (a).rbegin(),(a).rend()
#define SZ(x) (int)(x).size()
#define vt vector
#define trav(a, x) for(auto& (a): (x))
#define DO if(true)
#define mp make_pair
#define pb push_back
#define eb emplace_back
//#define int int64_t
typedef vector<int> vi;
typedef pair<int, int> pi;
#define mod 1000000007
void setIO(){
ios::sync_with_stdio(false);
cin.tie(nullptr);
}
template <typename T>
void read(vector<T> &a, int n) {
a.resize(n);
for (auto &x: a) cin >> x;
}
template<class T, class U>
ostream& operator <<(ostream& out, const pair<T,U> &v){
out << "(";
out << v.first << ", " << v.second;
return out << ")";
}
template<class T>
ostream& operator <<(ostream& out, const vector<T> &v) {
out << "[";
list(i, SZ(v)) {
if(i) out << ", ";
out << v[i];
}
return out << "]";
}
template <typename T>
void print(vector<T> &a) {
for (const auto& x: a) cout << x << ' ';
cout << '\n';
}
template<typename T>
void MOD(T& x, int m = mod){
x %= m;
if(x < 0) x += m;
}
#define trace(...) dbg(#__VA_ARGS__, __VA_ARGS__)
template <typename T>
void dbg(const char* name, T&& arg1){
cout << name << " : " << arg1 << '\n';
}
template <typename T, typename... U>
void dbg(const char* names, T&& arg1, U&&... args){
const char* comma = strchr(names + 1, ',');
cout.write(names, comma - names) << " : " << arg1 << " | ";
dbg(comma+1, args...);
}
template<class T> void read(T& x) {
cin >> x;
}
template<class T, class... U> void read(T& t, U&... u) {
read(t);
read(u...);
}
int gcd(int a, int b) { return !a ? b : gcd(b%a,a); }
int ceil_div(int a, int b) { return (a + b - 1) / b; }
using ll = int64_t;
/*
* Range Xor
* Point Update
*/
struct SegTree {
int size = 1;
vi elements;
void init(int n){
while(size < n){
size *= 2;
}
elements.assign(2 * size, 0);
}
void pull(int x){
elements[x] = elements[2 * x + 1] ^ elements[2 * x + 2];
}
void set(int i, int v, int x, int lx, int rx){
if(rx - lx == 1){
elements[x] = v;
return;
}
int mid = (lx + rx) / 2;
if(i < mid){
set(i, v, 2 * x + 1, lx, mid);
}else {
set(i, v, 2 * x + 2, mid, rx);
}
pull(x);
}
void set(int i, int v){
set(i, v, 0, 0, size);
}
int calc(int l, int r, int x, int lx, int rx){
if(l >= rx or r <= lx){
return 0;
}
if(l <= lx and rx <= r){
return elements[x];
}
int mid = (lx + rx) / 2;
int r1 = calc(l, r, 2 * x + 1, lx, mid);
int r2 = calc(l, r, 2 * x + 2, mid, rx);
int ans = r1 ^ r2;
return ans;
}
int calc(int l, int r){
return calc(l, r, 0, 0, size);
}
};
const int N = int(2e5) + 10;
int n, q;
vi a;
int32_t main(){
setIO();
read(n, q);
read(a, n);
SegTree st[2];
list(i, 2){
st[i].init(n);
}
list(i, n){
st[i & 1].set(i, a[i]);
}
int op, idx, l, r, v;
while(q--){
read(op);
if(op == 1){
read(idx);
read(v);
idx--;
st[idx & 1].set(idx, v);
}else {
read(l, r);
l--;
if ((r - l) % 2 == 0) {
cout << "0\n";
continue;
}
cout << st[l & 1].calc(l, r) << '\n';
}
}
return 0;
}
Compilation message
xoranges.cpp: In function 'std::ostream& operator<<(std::ostream&, const std::vector<T>&)':
xoranges.cpp:22:28: warning: unnecessary parentheses in declaration of 'i' [-Wparentheses]
22 | #define list(i,N) for(auto (i)=0;(i)<(N);(i)++)
| ^
xoranges.cpp:62:5: note: in expansion of macro 'list'
62 | list(i, SZ(v)) {
| ^~~~
xoranges.cpp: In function 'int32_t main()':
xoranges.cpp:22:28: warning: unnecessary parentheses in declaration of 'i' [-Wparentheses]
22 | #define list(i,N) for(auto (i)=0;(i)<(N);(i)++)
| ^
xoranges.cpp:180:5: note: in expansion of macro 'list'
180 | list(i, 2){
| ^~~~
xoranges.cpp:22:28: warning: unnecessary parentheses in declaration of 'i' [-Wparentheses]
22 | #define list(i,N) for(auto (i)=0;(i)<(N);(i)++)
| ^
xoranges.cpp:183:5: note: in expansion of macro 'list'
183 | list(i, n){
| ^~~~
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1 ms |
212 KB |
Output is correct |
2 |
Correct |
0 ms |
212 KB |
Output is correct |
3 |
Correct |
0 ms |
212 KB |
Output is correct |
4 |
Correct |
0 ms |
316 KB |
Output is correct |
5 |
Correct |
0 ms |
212 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1 ms |
340 KB |
Output is correct |
2 |
Correct |
1 ms |
340 KB |
Output is correct |
3 |
Correct |
1 ms |
344 KB |
Output is correct |
4 |
Correct |
1 ms |
328 KB |
Output is correct |
5 |
Correct |
1 ms |
340 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1 ms |
212 KB |
Output is correct |
2 |
Correct |
0 ms |
212 KB |
Output is correct |
3 |
Correct |
0 ms |
212 KB |
Output is correct |
4 |
Correct |
0 ms |
316 KB |
Output is correct |
5 |
Correct |
0 ms |
212 KB |
Output is correct |
6 |
Correct |
1 ms |
340 KB |
Output is correct |
7 |
Correct |
1 ms |
340 KB |
Output is correct |
8 |
Correct |
1 ms |
344 KB |
Output is correct |
9 |
Correct |
1 ms |
328 KB |
Output is correct |
10 |
Correct |
1 ms |
340 KB |
Output is correct |
11 |
Correct |
3 ms |
596 KB |
Output is correct |
12 |
Correct |
3 ms |
596 KB |
Output is correct |
13 |
Correct |
3 ms |
596 KB |
Output is correct |
14 |
Correct |
3 ms |
596 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
133 ms |
11208 KB |
Output is correct |
2 |
Correct |
163 ms |
11168 KB |
Output is correct |
3 |
Correct |
121 ms |
11260 KB |
Output is correct |
4 |
Correct |
115 ms |
10828 KB |
Output is correct |
5 |
Correct |
113 ms |
10820 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1 ms |
212 KB |
Output is correct |
2 |
Correct |
0 ms |
212 KB |
Output is correct |
3 |
Correct |
0 ms |
212 KB |
Output is correct |
4 |
Correct |
0 ms |
316 KB |
Output is correct |
5 |
Correct |
0 ms |
212 KB |
Output is correct |
6 |
Correct |
1 ms |
340 KB |
Output is correct |
7 |
Correct |
1 ms |
340 KB |
Output is correct |
8 |
Correct |
1 ms |
344 KB |
Output is correct |
9 |
Correct |
1 ms |
328 KB |
Output is correct |
10 |
Correct |
1 ms |
340 KB |
Output is correct |
11 |
Correct |
3 ms |
596 KB |
Output is correct |
12 |
Correct |
3 ms |
596 KB |
Output is correct |
13 |
Correct |
3 ms |
596 KB |
Output is correct |
14 |
Correct |
3 ms |
596 KB |
Output is correct |
15 |
Correct |
133 ms |
11208 KB |
Output is correct |
16 |
Correct |
163 ms |
11168 KB |
Output is correct |
17 |
Correct |
121 ms |
11260 KB |
Output is correct |
18 |
Correct |
115 ms |
10828 KB |
Output is correct |
19 |
Correct |
113 ms |
10820 KB |
Output is correct |
20 |
Correct |
124 ms |
11088 KB |
Output is correct |
21 |
Correct |
118 ms |
10944 KB |
Output is correct |
22 |
Correct |
119 ms |
10952 KB |
Output is correct |
23 |
Correct |
111 ms |
10824 KB |
Output is correct |
24 |
Correct |
120 ms |
10952 KB |
Output is correct |