NOI simulation (5.4) CQOID2T3 XOR sequence

XOR sequence

Topic background:

5.4  Simulation  of CQOI2018D2T3  

Analysis: Team Mo

 

Mo team's naked question... directly find the prefix sum, then it is equivalent to the logarithm of sum[x - 1] ^ sum[y] == k in an interval , directly Mo team, record a bucket, and add a new one The sum of , the contribution to the answer is cnt[sum ^ k] , minus a sum , and similarly minus cnt[sum ^ k] , there are no details and no precautions, just write it directly...

 

Source:

/*
    created by scarlyw
*/
#include <cstdio>
#include <string>
#include <algorithm>
#include <cstring>
#include <iostream>
#include <cmath>
#include <cctype>
#include <vector>
#include <set>
#include <queue>
#include <ctime>
#include <bitset>
 
inline char read() {
    static const int IN_LEN = 1024 * 1024;
    static char buf[IN_LEN], *s, *t;
    if (s == t) {
        t = (s = buf) + fread(buf, 1, IN_LEN, stdin);
        if (s == t) return -1;
    }
    return *s++;
}
 
///*
template<class T>
inline void R(T &x) {
    static char c;
    static bool iosig;
    for (c = read(), iosig = false; !isdigit(c); c = read()) {
        if (c == -1) return ;
        if (c == '-') iosig = true;
    }
    for (x = 0; isdigit(c); c = read())
        x = ((x << 2) + x << 1) + (c ^ '0');
    if (iosig) x = -x;
}
//*/
 
const int OUT_LEN = 1024 * 1024;
char obuf[OUT_LEN], *oh = obuf;
inline void write_char(char c) {
    if (oh == obuf + OUT_LEN) fwrite(obuf, 1, OUT_LEN, stdout), oh = obuf;
    *oh++ = c;
}
 
template<class T>
inline void W(T x) {
    static int buf[30], cnt;
    if (x == 0) write_char('0');
    else {
        if (x < 0) write_char('-'), x = -x;
        for (cnt = 0; x; x /= 10) buf[++cnt] = x % 10 + 48;
        while (cnt) write_char(buf[cnt--]);
    }
}
 
inline void flush() {
    fwrite(obuf, 1, oh - obuf, stdout);
}
 
/*
template<class T>
inline void R(T &x) {
    static char c;
    static bool iosig;
    for (c = getchar(), iosig = false; !isdigit(c); c = getchar())
        if (c == '-') iosig = true;
    for (x = 0; isdigit(c); c = getchar())
        x = ((x << 2) + x << 1) + (c ^ '0');
    if (iosig) x = -x;
}
//*/

const int MAXN = 150000 + 1;

int n, m, k, l, r, bs;
int a[MAXN], cnt[MAXN];
long long final_ans[MAXN];

struct query {
    int l, r, bl, id;
    query() {}
    query (int l, int r, int id): l (l), r (r), bl ((l - 1) / bs + 1), id (id) {}

    inline bool operator < (const query &a) const {
        return (bl == a.bl) ? (r < a.r) : (bl < a.bl);
    }
} q[MAXN];

inline void read_in() {
    R(n), R(m), R(k);
    for (int i = 1; i <= n; ++i) R(a[i]), a[i] ^= a[i - 1];
    bs = sqrt(n);
    for (int i = 1; i <= m; ++i) R(l), R(r), q[i] = query(l, r, i);
    std::sort(q + 1, q + m + 1);
}

long long ans;
inline void compose_l(int cur) {
    cur-, cnt[a[cur]]--, ans -= (long long)cnt[a[cur] ^k];
}

inline void compose_r(int cur) {
    cnt[a[cur]]--, ans -= (long long)cnt[a[cur] ^ k];
}

inline void extend_l(int cur) {
    ans += (long long)cnt[a[cur] ^ k], cnt[a[cur]]++;
}

inline void extend_r(int cur) {
    ans += (long long)cnt[a[cur] ^ k], cnt[a[cur]]++;
}

inline void solve() {
    int l = 1, r = 1;
    cnt[a[1]]++, cnt[a[0]]++, ans = (a[1] == k);
    for (int i = 1; i <= m; ++i) {
        while (l < q[i].l) compose_l(l), l++;
        while (r > q[i].r) compose_r(r), r--;
        while (l > q[i].l) --l, extend_l(l);
        while (r < q[i].r) ++r, extend_r(r);
        final_ans[q[i].id] = years;
    }
    for (int i = 1; i <= m; ++i) W(final_ans[i]), write_char('\n');
}

int main() {
    freopen("xor.in", "r", stdin);
    freopen("xor.out", "w", stdout);
    read_in();
    solve();
    flush();
    return 0;
}

Guess you like

Origin http://43.154.161.224:23101/article/api/json?id=325601175&siteId=291194637
5.4