# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
359133 | 2021-01-26T11:32:34 Z | ogibogi2004 | XOR Sum (info1cup17_xorsum) | C++14 | 1349 ms | 31152 KB |
#include<bits/stdc++.h> using namespace std; #define ll long long const ll MAXN=4e6+6; const ll logN=22; ll n,ans; ll a[MAXN]; int main() { cin>>n; for(ll i=1;i<=n;i++) { cin>>a[i]; } ll ans=0; for(ll j=0;j<logN;j++) { vector<ll>a1; if(j!=0) { for(ll i=1;i<=n;i++) { if(!(a[i]&(1<<(j-1)))) { a1.push_back(a[i]); } } for(ll i=1;i<=n;i++) { if(a[i]&(1<<(j-1))) { a1.push_back(a[i]); } } for(int i=0;i<a1.size();i++)a[i+1]=a1[i]; } ll cnt0up=0,cnt1up=0,cnt0down=0,cnt1down=0; ll p=n,cnt=0; for(int i=1;i<=n;i++) { if(a[i]&(1<<j))cnt1up++; else cnt0up++; } for(int i=1;i<=n;i++) { while(p>0&&a[p]%(1<<j)+a[i]%(1<<j)>=(1<<j)) { if(a[p]&(1<<j))cnt1down++,cnt1up--; else cnt0down++,cnt0up--; p--; } if(a[i]&(1<<j)) { cnt+=cnt0up+cnt1down; } else { cnt+=cnt1up+cnt0down; } if((2*a[i])&(1<<j))cnt++; } //cout<<j<<" "<<cnt<<endl; if((cnt/2)%2==1) { ans+=(1<<j); } } cout<<ans<<endl; return 0; }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 7 ms | 492 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 1031 ms | 29320 KB | Output is correct |
2 | Correct | 963 ms | 27660 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 1031 ms | 29320 KB | Output is correct |
2 | Correct | 963 ms | 27660 KB | Output is correct |
3 | Correct | 1349 ms | 31152 KB | Output is correct |
4 | Correct | 1321 ms | 30320 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 7 ms | 492 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 7 ms | 492 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |