/*
ID: Sho10
LANG: C++
*/
#include <bits/stdc++.h> //Andrei Alexandru a.k.a Sho10
#define ll long long int
#pragma GCC optimize("O3")
#pragma GCC optimize("Ofast")
#define all(a) (a).begin(), (a).end()
#define sz size
#define f first
#define s second
#define pb push_back
#define er erase
#define in insert
#define mp make_pair
#define pi pair
#define rc(s) return cout<<s,0
#define endl '\n'
#define mod 1000000007
#define PI 3.14159265359
#define CODE_START ios_base::sync_with_stdio(false);cin.tie(0);cout.tie(0);
using namespace std;
ll n,q,a[100005],l,r,xorpar[100005],xorimpar[100005];
int32_t main(){
CODE_START;
cin>>n>>q;
xorpar[0]=0;
xorimpar[0]=0;
for(ll i=1;i<=n;i++)
{
cin>>a[i];
if(i%2==1){
xorimpar[i]=(xorimpar[i-1]^a[i]);
xorpar[i]=xorpar[i-1];
}else {
xorpar[i]=(xorpar[i-1]^a[i]);
xorimpar[i]=xorimpar[i-1];
}
}
while(q--){
ll t;
cin>>t>>l>>r;
if(t==1){
a[l]=r;
}else if(t==2){
ll s1=1;
ll val=a[l];
if(l%2!=r%2){
cout<<0<<endl;
}else {
if(l%2==1){
cout<<(xorimpar[r]^xorimpar[l-1])<<endl;
}else {
cout<<(xorpar[r]^xorimpar[l-1])<<endl;
}
}
}
}
}
Compilation message
xoranges.cpp: In function 'int32_t main()':
xoranges.cpp:47:4: warning: unused variable 's1' [-Wunused-variable]
ll s1=1;
^~
xoranges.cpp:48:4: warning: unused variable 'val' [-Wunused-variable]
ll val=a[l];
^~~
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
5 ms |
512 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
5 ms |
384 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
5 ms |
512 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
22 ms |
5248 KB |
Execution killed with signal 11 (could be triggered by violating memory limits) |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
5 ms |
512 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |