#include<bits/stdc++.h>
#define ll long long
#define task " "
using namespace std;
const int maxn = 1e6 + 1, mod = 1e9 + 7;
int n, a[maxn], m[maxn], id[maxn], cnt = 0, idx = 0, res = 0;
int t, p, r;
vector<int> v[2];
int main ()
{
//freopen(task".INP", "r", stdin);
//freopen(task".OUT", "w", stdout);
ios_base::sync_with_stdio(0);
cin.tie(0);
cin >> n;
for (int i = 1; i <= n; i++)
{
cin >> a[i];
m[i] = 0;
id[i] = i;
}
m[n + 1] = INT_MAX;
for (int j = 0; j <= 29; j++)
{
cnt = idx = 0; v[0].clear(); v[1].clear();
for (int i = 1; i <= n; i++)
v[(a[id[i]] >> j) & 1].push_back(id[i]);
for (int i : v[0])
{
m[++idx] = a[i] & ((1 << (j + 1)) - 1);
id[idx] = i;
}
for (int i : v[1])
{
m[++idx] = a[i] & ((1 << (j + 1)) - 1);
id[idx] = i;
}
t = p = r = n + 1;
for (int i = 1; i <= n; i++)
{
while (t > 1 && m[t - 1] >= (1 << (j + 1)) - m[i]) t--;
while (p > 1 && m[p - 1] >= (1 << j) - m[i]) p--;
while (r > 1 && m[r - 1] >= (1 << j) + (1 << (j + 1)) - m[i]) r--;
cnt += (min(t, i + 1) - min(p, i + 1)) + (i + 1 - min(r, i + 1));
//cnt += lower_bound(m + 1, m + i + 1, (1LL << (j + 1)) - m[i]) - lower_bound(m + 1, m + i + 1, (1LL << j) - m[i]);
//cnt += lower_bound(m + 1, m + i + 1, (1LL << (j + 2)) - m[i]) - lower_bound(m + 1, m + i + 1, (1LL << j) + (1LL << (j + 1)) - m[i]);
}
if (cnt & 1) res ^= (1 << j);
}
cout << res;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
3 ms |
4444 KB |
Output is correct |
2 |
Correct |
3 ms |
4580 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
268 ms |
24388 KB |
Output is correct |
2 |
Correct |
255 ms |
24384 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
268 ms |
24388 KB |
Output is correct |
2 |
Correct |
255 ms |
24384 KB |
Output is correct |
3 |
Correct |
339 ms |
26684 KB |
Output is correct |
4 |
Correct |
318 ms |
26688 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
3 ms |
4444 KB |
Output is correct |
2 |
Correct |
3 ms |
4580 KB |
Output is correct |
3 |
Correct |
46 ms |
10572 KB |
Output is correct |
4 |
Correct |
47 ms |
10836 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
3 ms |
4444 KB |
Output is correct |
2 |
Correct |
3 ms |
4580 KB |
Output is correct |
3 |
Correct |
268 ms |
24388 KB |
Output is correct |
4 |
Correct |
255 ms |
24384 KB |
Output is correct |
5 |
Correct |
339 ms |
26684 KB |
Output is correct |
6 |
Correct |
318 ms |
26688 KB |
Output is correct |
7 |
Correct |
46 ms |
10572 KB |
Output is correct |
8 |
Correct |
47 ms |
10836 KB |
Output is correct |
9 |
Correct |
437 ms |
29152 KB |
Output is correct |
10 |
Correct |
424 ms |
28484 KB |
Output is correct |
11 |
Correct |
432 ms |
27024 KB |
Output is correct |