# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
359138 | 2021-01-26T11:35:52 Z | ogibogi2004 | XOR Sum (info1cup17_xorsum) | C++14 | 1600 ms | 16444 KB |
#include<bits/stdc++.h> using namespace std; #define ll long long const ll MAXN=1e6+6; const ll logN=31; ll n,ans; ll a[MAXN]; int main() { ios_base::sync_with_stdio(false); cin.tie(NULL); cout.tie(NULL); cin>>n; for(int i=1;i<=n;++i) { cin>>a[i]; } int ans=0; for(int j=0;j<logN;++j) { vector<int>a1; if(j!=0) { for(int i=1;i<=n;++i) { if(!(a[i]&(1<<(j-1)))) { a1.push_back(a[i]); } } for(int 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; int p=n; ll 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 | Correct | 7 ms | 364 KB | Output is correct |
2 | Correct | 7 ms | 364 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 974 ms | 16332 KB | Output is correct |
2 | Correct | 927 ms | 15768 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 974 ms | 16332 KB | Output is correct |
2 | Correct | 927 ms | 15768 KB | Output is correct |
3 | Correct | 1251 ms | 16428 KB | Output is correct |
4 | Correct | 1260 ms | 16092 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 7 ms | 364 KB | Output is correct |
2 | Correct | 7 ms | 364 KB | Output is correct |
3 | Correct | 176 ms | 2112 KB | Output is correct |
4 | Correct | 165 ms | 2112 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 7 ms | 364 KB | Output is correct |
2 | Correct | 7 ms | 364 KB | Output is correct |
3 | Correct | 974 ms | 16332 KB | Output is correct |
4 | Correct | 927 ms | 15768 KB | Output is correct |
5 | Correct | 1251 ms | 16428 KB | Output is correct |
6 | Correct | 1260 ms | 16092 KB | Output is correct |
7 | Correct | 176 ms | 2112 KB | Output is correct |
8 | Correct | 165 ms | 2112 KB | Output is correct |
9 | Execution timed out | 1650 ms | 16444 KB | Time limit exceeded |
10 | Halted | 0 ms | 0 KB | - |