#include<bits/stdc++.h>
using namespace std;
using ll = long long;
const int N = 1e6 + 66;
//
// bit
// 2^bit
// a[i] %= 2^(bit+1)
// 1 <= a[i] <= 2^(bit+1)-1
// 2 <= a[i] + a[j] <= 2^(bit+2)-2
// 0010000000
// 0011111111
// 0110000000
// 0111111111
//
// 2^bit <= a[i] + a[j] <= 2^(bit+1)-1
// 2^(bit+1)+2^(bit) <= a[i] + a[j] <= 2^(bit+2)-1
const int LOG = 30;
int a[N], b[N];
int main() {
ios_base::sync_with_stdio(0);
cin.tie(0), cout.tie(0);
int n;
cin >> n;
for (int i = 1 ; i <= n ; ++ i) cin >> a[i];
int ans = 0;
for (int bit = 0 ; bit < LOG ; ++ bit) {
int parity = 0;
for (int i = 1 ; i <= n ; ++ i) {
b[i] = a[i] % (1 << (bit+1));
}
sort(b+1,b+1+n);
//for (int i = 1 ; i <= n ; ++ i) cout << b[i] << " \n"[i == n];
for (int i = 1, l = n, r = n ; i <= n ; ++ i) {
while (l >= 1 && (1<<bit) <= b[i] + b[l]) --l;
while (r >= 1 && b[i] + b[r] > (1<<(bit+1))-1) --r;
int cur = max(r,i) - max(l,i-1);
if (r < i) break;
if (cur & 1) parity ^= 1;
//cout << i << " " << l + 1 << " " << r << "\n";
}
for (int i = 1, l = n, r = n ; i <= n ; ++ i) {
while (l >= 1 && (1<<(bit+1))+(1<<bit) <= b[i] + b[l]) --l;
while (r >= 1 && b[i] + b[r] > (1ll<<(bit+2))-1) --r;
int cur = max(r,i) - max(l,i-1);
if (r < i) break;
if (cur & 1) parity ^= 1;
//cout << i << " " << l + 1 << " " << r << "\n";
}
ans += parity * (1 << bit);
}
cout << ans;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
10 ms |
364 KB |
Output is correct |
2 |
Correct |
10 ms |
364 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Execution timed out |
1678 ms |
8172 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Execution timed out |
1678 ms |
8172 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
10 ms |
364 KB |
Output is correct |
2 |
Correct |
10 ms |
364 KB |
Output is correct |
3 |
Correct |
257 ms |
1260 KB |
Output is correct |
4 |
Correct |
259 ms |
1132 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
10 ms |
364 KB |
Output is correct |
2 |
Correct |
10 ms |
364 KB |
Output is correct |
3 |
Execution timed out |
1678 ms |
8172 KB |
Time limit exceeded |
4 |
Halted |
0 ms |
0 KB |
- |