답안 #389276

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
389276 2021-04-14T02:07:36 Z syl123456 XOR Sum (info1cup17_xorsum) C++17
11 / 100
309 ms 8308 KB
#include <bits/stdc++.h>
#define all(i) (i).begin(), (i).end()
#define debug(x) cerr << "Line(" << __LINE__ << ") -> " << #x << " is " << x << endl
using namespace std;
template<typename T1, typename T2>
ostream& operator << (ostream &i, pair<T1, T2> j) {
    return i << j.first << ' ' << j.second;
}
template<typename T>
ostream& operator << (ostream &i, vector<T> j) {
    i << '{' << j.size() << ':';
    for (T ii : j) i << ' ' << ii;
    return i << '}';
}
typedef long long ll;
typedef pair<int, int> pi;
typedef pair<pi, int> pp;
int main() {
    ios::sync_with_stdio(0), cin.tie(0);
    int n;
    cin >> n;
    int a[n];
    for (int &i : a) cin >> i;
    int ans = 0;
    for (int i = 0; i < 20; ++i) {
        int x = (1 << i + 1) - 1, cnt[x + 1]{};
        ll tmp = 0;
        for (int j : a) ++cnt[j & x];
        for (int j = 1; j < 1 << i; ++j) cnt[j] += cnt[j - 1];
        for (int j = (1 << i) + 1; j < 1 << i + 1; ++j) cnt[j] += cnt[j - 1];
        for (int j : a) {
            j &= x;
            if (j << 1 & 1 << i) ++tmp;
            if (j >> i & 1) {
                tmp += cnt[x - j];
                tmp += cnt[x] - cnt[x + (1 << i) - j];
            }
            else {
                tmp += cnt[x >> 1] - cnt[(x >> 1) - j];
                tmp += cnt[x - j];
            }
        }
        if (tmp & 2) ans ^= 1 << i;
    }
    cout << ans;
}
/*
 *
 *
 *
 *
 */

Compilation message

xorsum.cpp: In function 'int main()':
xorsum.cpp:26:25: warning: suggest parentheses around '+' inside '<<' [-Wparentheses]
   26 |         int x = (1 << i + 1) - 1, cnt[x + 1]{};
      |                       ~~^~~
xorsum.cpp:30:47: warning: suggest parentheses around '+' inside '<<' [-Wparentheses]
   30 |         for (int j = (1 << i) + 1; j < 1 << i + 1; ++j) cnt[j] += cnt[j - 1];
      |                                             ~~^~~
# 결과 실행 시간 메모리 Grader output
1 Incorrect 10 ms 4428 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 252 ms 8308 KB Output is correct
2 Correct 236 ms 8032 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 252 ms 8308 KB Output is correct
2 Correct 236 ms 8032 KB Output is correct
3 Correct 309 ms 8192 KB Output is correct
4 Incorrect 296 ms 8068 KB Output isn't correct
# 결과 실행 시간 메모리 Grader output
1 Incorrect 10 ms 4428 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 10 ms 4428 KB Output isn't correct
2 Halted 0 ms 0 KB -