#include <bits/stdc++.h>
using namespace std;
#define ll long long
#define pb push_back
#define mp make_pair
#define mt make_tuple
#define fi first
#define sc second
#define th third
#define fo fourth
#define pii pair<int,int>
#define pll pair<ll,ll>
#define ldb double
#define endl "\n"
#define all(data) data.begin(),data.end()
#define TYPEMAX(type) std::numeric_limits<type>::max()
#define TYPEMIN(type) std::numeric_limits<type>::min()
#define MAXN 200007
void update(vector<ll>& v, ll k, ll x)
{
while(k<v.size())
{
v[k]^=x;
k+=k&-k;
}
}
ll prefsum1(const vector<ll>& v, ll k)
{
ll sum=0;
while(k>0)
{
sum^=v[k];
k-=k&-k;
}
return sum;
}
int main()
{
ios::sync_with_stdio(false); cin.tie(0);
ll n,q; cin>>n>>q;
ll a[n+1]; a[0]=0;
vector<ll> BIT2(n+1,0),BIT3(n+1,0);
for(int i=1;i<=n;i++)
{
cin>>a[i];
if(i%2==0) update(BIT2, i, a[i]);
else update(BIT3, i, a[i]);
}
for(int i=1;i<=q;i++)
{
ll x,y,z; cin>>x>>y>>z;
if(x==2)
{
if((z-y+1)%2==0) cout<<0<<endl;
else
{
if(y%2==0) cout<<((prefsum1(BIT2, z))^(prefsum1(BIT2, y-1)))<<endl;
else cout<<((prefsum1(BIT3, z))^(prefsum1(BIT3, y-1)))<<endl;
}
}
else
{
if(y%2==0) update(BIT2, y, z^a[y]);
else update(BIT3, y, z^a[y]);
}
}
return 0;
}
Compilation message
xoranges.cpp: In function 'void update(std::vector<long long int>&, long long int, long long int)':
xoranges.cpp:23:12: warning: comparison of integer expressions of different signedness: 'long long int' and 'std::vector<long long int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
23 | while(k<v.size())
| ~^~~~~~~~~
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
0 ms |
212 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1 ms |
212 KB |
Output is correct |
2 |
Correct |
1 ms |
212 KB |
Output is correct |
3 |
Correct |
1 ms |
212 KB |
Output is correct |
4 |
Correct |
1 ms |
212 KB |
Output is correct |
5 |
Correct |
1 ms |
212 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
0 ms |
212 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
88 ms |
6160 KB |
Output is correct |
2 |
Correct |
87 ms |
6096 KB |
Output is correct |
3 |
Correct |
95 ms |
6208 KB |
Output is correct |
4 |
Correct |
87 ms |
6208 KB |
Output is correct |
5 |
Correct |
80 ms |
6104 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
0 ms |
212 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |