Submission #1140211

#TimeUsernameProblemLanguageResultExecution timeMemory
1140211PersiaXOR Sum (info1cup17_xorsum)C++20
56 / 100
1695 ms8376 KiB
#include <bits/stdc++.h>
#define bit(i, x) (x >> i & 1)
#define ll long long
const int N = 2e5 + 5;
const int mod = 998244353;
using namespace std;

int n;
vector<int> a;

int subtask1() {
    int res = 0;
    for(int i = 1; i <= n; i++) {
        for(int j = i; j <= n; j++) {
            int x = a[i] + a[j];
            res = (res ^ x);
        }
    }
    return res;
}

int subtask2() {
    vector<int> cnt(4005);
    int res = 0;
    for(int i = 1; i <= n; i++) cnt[a[i]]++;
    for(int i = 1; i <= 4000; i++) {
        for(int j = i; j <= 4000; j++) {
            ll x = (i == j ? 1LL * cnt[i] * (cnt[i] + 1) / 2 : 1LL * cnt[i] * cnt[j]);
            x %= 2;
            if(x % 2) res ^= (i + j);
        }
    }
    return res;
}

ll subtask3() {
    vector<int> v;

    auto calc = [&](ll x) -> ll { // Ham dem so cap <= x trong v, v phai sort san
        int sz = v.size();
        ll res = 0;

        for(int i = 0, j = sz - 1; i < sz; i++) {
            while(j >= i && v[i] + v[j] > x) j--;
            if(j >= i) res += j - i + 1;
        }

        return res;
    };

//    v.push_back(1);
//    v.push_back(3);
//    v.push_back(4);
//
//    cout << calc(4);

    ll res = 0;

    for(int i = 0; i < 30; i++) {
        // Xuat vector modulo 2^{i + 1} vao v
        // Sort lai v
        // Dung v va dem so cap <= x
        v.clear();
        for(int j = 1; j <= n; j++) v.push_back(a[j] % (1LL << (i + 1)));
        sort(v.begin(), v.end());
        ll val = calc((1LL << (i + 1)) - 1) - calc((1LL << i) - 1);
        val += calc((1LL << (i + 2)) - 2) - calc((1LL << (i + 1)) + (1LL << i) - 1);
        if(val % 2) res |= (1LL << i);
    }

    return res;
}

bool check2() {
    return *max_element(a.begin() + 1, a.begin() + n + 1) <= 4000;
}

signed main(int argc, char* argv[]) {
    ios_base::sync_with_stdio(0);
    cin.tie(0); cout.tie(0);

    cin >> n;
    a.assign(n + 3, 0);
    for(int i = 1; i <= n; i++) cin >> a[i];

    cout << subtask3();

//    if(check2()) cout << subtask2();
//    else cout << subtask1();

//    subtask3();

    return 0 ^ 0;
}
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...