#include <iostream>
#include <vector>
#include <iomanip>
#include <algorithm>
#include <cassert>
#include <map>
#include <complex>
#include <cmath>
#include <set>
#include <queue>
using namespace std;
#pragma GCC target ("avx2")
#pragma GCC optimization ("O3")
#pragma GCC optimization ("unroll-loops")
int64_t res (vector<int>& a, int x) {
//how many are <= x
int64_t r = a.size() - 1;
int64_t ans = 0;
for (int i = 0; i < a.size(); i++) {
if (a[i] + a[0] > x) {
break;
}
while (a[r] + a[i] > x) {
r--;
}
ans += abs(r) + 1 - (r >= i);
}
ans /= 2;
for (int i = 0; i < a.size(); i++) {
ans += (2 * a[i] <= x);
}
return ans;
}
int64_t res (vector<int>& a, int l, int r) {
return res(a, r) - res(a, l - 1);
}
int main () {
ios_base::sync_with_stdio(false);
cin.tie(NULL);
int n; cin >> n;
vector<int> v(n);
for (int i = 0; i < n; i++) {
cin >> v[i];
}
int64_t ans = 0;
for (int b = 30; b >= 0; b--) {
vector<int> v1, v2;
for (int i = 0; i < v.size(); i++) {
if (v[i] & (1 << b)) v1.push_back(v[i] & ((1 << (b + 1)) - 1));
else v2.push_back(v[i] & ((1 << (b + 1)) - 1));
}
v.clear();
sort(v1.begin(), v1.end());
sort(v2.begin(), v2.end());
int l = 0, r = 0;
while (true) {
if (l == (int)v1.size() && r == (int)v2.size()) break;
else if (l == (int)v1.size()) v.push_back(v2[r++]);
else if (r == (int)v2.size()) v.push_back(v1[l++]);
else if (v1[l] <= v2[r]) v.push_back(v1[l++]);
else if (v1[l] > v2[r]) v.push_back(v2[r++]);
}
sort(v.begin(), v.end());
int64_t a = 0;
a += res(v, (1 << b), (1 << (b + 1)) - 1);
a += res(v, (1 << b) + (1 << (b + 1)), (1 << (b + 2)) - 1);
ans += ((int64_t)1 << b) * (a % 2);
}
cout << ans;
}
Compilation message
xorsum.cpp:14: warning: ignoring '#pragma GCC optimization' [-Wunknown-pragmas]
14 | #pragma GCC optimization ("O3")
|
xorsum.cpp:15: warning: ignoring '#pragma GCC optimization' [-Wunknown-pragmas]
15 | #pragma GCC optimization ("unroll-loops")
|
xorsum.cpp: In function 'int64_t res(std::vector<int>&, int)':
xorsum.cpp:20:23: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
20 | for (int i = 0; i < a.size(); i++) {
| ~~^~~~~~~~~~
xorsum.cpp:30:23: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
30 | for (int i = 0; i < a.size(); i++) {
| ~~^~~~~~~~~~
xorsum.cpp: In function 'int main()':
xorsum.cpp:49:27: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
49 | for (int i = 0; i < v.size(); i++) {
| ~~^~~~~~~~~~
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
9 ms |
340 KB |
Output is correct |
2 |
Correct |
9 ms |
340 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1596 ms |
12376 KB |
Output is correct |
2 |
Correct |
1437 ms |
11724 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1596 ms |
12376 KB |
Output is correct |
2 |
Correct |
1437 ms |
11724 KB |
Output is correct |
3 |
Execution timed out |
1609 ms |
12328 KB |
Time limit exceeded |
4 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
9 ms |
340 KB |
Output is correct |
2 |
Correct |
9 ms |
340 KB |
Output is correct |
3 |
Correct |
245 ms |
1648 KB |
Output is correct |
4 |
Correct |
240 ms |
1628 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
9 ms |
340 KB |
Output is correct |
2 |
Correct |
9 ms |
340 KB |
Output is correct |
3 |
Correct |
1596 ms |
12376 KB |
Output is correct |
4 |
Correct |
1437 ms |
11724 KB |
Output is correct |
5 |
Execution timed out |
1609 ms |
12328 KB |
Time limit exceeded |
6 |
Halted |
0 ms |
0 KB |
- |