# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
766198 | 2023-06-25T11:23:25 Z | Ahmed57 | XOR Sum (info1cup17_xorsum) | C++17 | 798 ms | 24256 KB |
#include <bits/stdc++.h> using namespace std; signed main(){ ios_base::sync_with_stdio(false);cin.tie(0); long long n; cin>>n; long long arr[n]; for(int i = 0;i<n;i++){ cin>>arr[i]; } sort(arr,arr+n); long long all = 0; reverse(arr,arr+n); for(long long i = 0;i<30;i++){ vector<long long> v; long long ans = 0; for(int j = 0;j<n;j++){ if((arr[j]+arr[j])&(1LL<<i)){ ans++; } v.push_back(arr[j]&((1LL<<(i+1))-1)); } sort(v.begin(),v.end()); int il = 0 , ir = 0; int ll = 0; for(int j = v.size()-1;j>=0;j--){ long long l=(1LL<<i),r=(1LL<<(i+1)); l-=v[j] , r-=v[j]; l&=((1LL<<(i+1))-1); r&=((1LL<<(i+1))-1); l+=(1LL<<(i+1)); r+=(1LL<<(i+1)); l&=((1LL<<(i+1))-1); r&=((1LL<<(i+1))-1); while(ir<v.size()&&v[ir]<r)ir++; if(l>=ll){ while(il<v.size()&&v[il]<l)il++; }else{ il = 0; while(il<v.size()&&v[il]<l)il++; } //cout<<l<<" "<<r<<" "<<il<<" "<<ir<<" "<<v[il]<<" "<<v[ir]<<endl; ll = l; if(l<=r)ans+=(ir-il); else ans+=ir+(n-il); } //cout<<endl; if(((ans/2)&1))all+=(1LL<<i); } cout<<all<<endl; }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 6 ms | 340 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 798 ms | 24256 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 798 ms | 24256 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 6 ms | 340 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 6 ms | 340 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |