| # | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
|---|---|---|---|---|---|---|---|
| 549848 | Vovamatrix | XORanges (eJOI19_xoranges) | C++14 | 95 ms | 6208 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#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;
}컴파일 시 표준 에러 (stderr) 메시지
| # | 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... | ||||
