# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
766207 | 2023-06-25T11:30:06 Z | Ahmed57 | XOR Sum (info1cup17_xorsum) | C++17 | 1600 ms | 12296 KB |
#pragma GCC optimize("Ofast") #include <bits/stdc++.h> using namespace std; signed main(){ ios_base::sync_with_stdio(false);cin.tie(0); int n; cin>>n; int 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(int i = 0;i<30;i++){ vector<int> 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))); l+=(1LL<<(i+1)); l&=((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 | Correct | 7 ms | 340 KB | Output is correct |
2 | Correct | 7 ms | 340 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 721 ms | 12276 KB | Output is correct |
2 | Correct | 643 ms | 11728 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 721 ms | 12276 KB | Output is correct |
2 | Correct | 643 ms | 11728 KB | Output is correct |
3 | Correct | 1064 ms | 12296 KB | Output is correct |
4 | Correct | 1043 ms | 12232 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 7 ms | 340 KB | Output is correct |
2 | Correct | 7 ms | 340 KB | Output is correct |
3 | Correct | 167 ms | 1592 KB | Output is correct |
4 | Correct | 167 ms | 1596 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 7 ms | 340 KB | Output is correct |
2 | Correct | 7 ms | 340 KB | Output is correct |
3 | Correct | 721 ms | 12276 KB | Output is correct |
4 | Correct | 643 ms | 11728 KB | Output is correct |
5 | Correct | 1064 ms | 12296 KB | Output is correct |
6 | Correct | 1043 ms | 12232 KB | Output is correct |
7 | Correct | 167 ms | 1592 KB | Output is correct |
8 | Correct | 167 ms | 1596 KB | Output is correct |
9 | Execution timed out | 1675 ms | 12256 KB | Time limit exceeded |
10 | Halted | 0 ms | 0 KB | - |