# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
45673 | aome | XOR Sum (info1cup17_xorsum) | C++17 | 1317 ms | 56396 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
const int N = 1000005;
int n;
int res;
int a[N];
int b[N];
bool p[35][N];
int arr[N];
int f[2][N];
int buf[2][N];
int main() {
scanf("%d", &n);
for (int i = 0; i < n; ++i) {
scanf("%d", &a[i]);
for (int j = 0; j < 30; ++j) {
p[j][i] = a[i] >> j & 1;
}
}
for (int i = 0; i < n; ++i) arr[i] = i;
for (int i = 0; i <= 30; ++i) {
// cout << "#\n";
// for (int j = 0; j < n; ++j) cout << arr[j] << ' ' << b[arr[j]] << '\n';
for (int j = n - 1; j >= 0; --j) {
f[0][j] = f[0][j + 1], f[1][j] = f[1][j + 1];
f[p[i][arr[j]]][j]++;
}
int cur = 0, ptr = n;
int cnt[2];
cnt[0] = cnt[1] = 0;
for (int j = 0; j < n; ++j) {
if (ptr < j) {
cnt[p[i][arr[ptr]]]--, ptr++;
}
while (ptr > j && b[arr[ptr - 1]] + b[arr[j]] >= (1 << i)) {
ptr--, cnt[p[i][arr[ptr]]]++;
}
int cnt2[2];
cnt2[0] = f[0][j] - cnt[0];
cnt2[1] = f[1][j] - cnt[1];
cur ^= cnt[p[i][arr[j]]] & 1;
cur ^= cnt2[p[i][arr[j]] ^ 1] & 1;
}
res += cur << i;
if (i == 30) break;
int sz[2];
sz[0] = sz[1] = 0;
for (int j = 0; j < n; ++j) {
b[j] += p[i][j] << i;
}
for (int j = 0; j < n; ++j) {
bool x = p[i][arr[j]]; buf[x][sz[x]++] = arr[j];
}
for (int j = 0; j < sz[0]; ++j) {
arr[j] = buf[0][j];
}
for (int j = 0; j < sz[1]; ++j) {
arr[j + sz[0]] = buf[1][j];
}
}
cout << res;
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |