E. XOR and Favorite Number

题意:很多询问,求每个询问下,有多少个区间,异或=k。

分析:异或也有前缀和。[L,R] = pre[R] ^ pre[L-1];

莫队算法:是莫涛队长发明的,一种改良版的暴力离线算法。

首先将问题重新排序,有生成树的,有简单版的分块,然后通过一个区间去递推另个一区间的值。

这里需要记录一下flag[ pre[i] ] 的个数。

#include <bits/stdc++.h>

using namespace std;

const int maxn = 1<<20;
int a[maxn];

struct  Node {
    int l,r,id;
}Q[maxn];

int pos[maxn];
long long ans[maxn];
long long flag[maxn];

bool cmp(Node a,Node b) {
    if(pos[a.l]==pos[b.l])
        return a.r < b.r;
    return pos[a.l] < pos[b.l];
}

int n,m,k;
int L = 1,R = 0;
long long Ans;

void add(int x) {
    Ans+=flag[a[x]^k];
    flag[a[x]]++;
}

void del(int x) {
    flag[a[x]]--;
    Ans-=flag[a[x]^k];
}

int main()
{
    scanf("%d%d%d",&n,&m,&k);
    int sz = sqrt(n);
    for(int i=1; i <= n; i++) {
        scanf("%d",&a[i]);
        a[i] = a[i]^a[i-1];
        pos[i] = i/sz;
    }

    for(int i=1; i<=m ;i++) {
        scanf("%d%d",&Q[i].l,&Q[i].r);
        Q[i].id = i;
    }

    sort(Q+1,Q+m+1,cmp);
    flag[0] = 1;

    for(int i=1; i <=m; i++) {

        while(L<Q[i].l) {
            del(L-1);
            L++;
        }

        while(L>Q[i].l) {
            L--;
            add(L-1);
        }

        while(R<Q[i].r) {
            R++;
            add(R);
        }

        while(R>Q[i].r) {
            del(R);
            R--;
        }

        ans[Q[i].id] = Ans;
    }

    for(int i=1; i <= m; i++)
        printf("%I64d\n", ans[i]);

    return 0;
}

时间: 2024-10-14 11:22:06

E. XOR and Favorite Number的相关文章

Codeforces Round #340 (Div. 2) E. XOR and Favorite Number 莫队算法

E. XOR and Favorite Number Bob has a favorite number k and ai of length n. Now he asks you to answer m queries. Each query is given by a pair li and ri and asks you to count the number of pairs of integers i and j, such that l ≤ i ≤ j ≤ r and the xor

XOR and Favorite Number(莫队算法+分块)

E. XOR and Favorite Number time limit per test 4 seconds memory limit per test 256 megabytes input standard input output standard output Bob has a favorite number k and ai of length n. Now he asks you to answer m queries. Each query is given by a pai

Codeforces Round #340 (Div. 2) E. XOR and Favorite Number 【莫队算法 + 异或和前缀和的巧妙】

任意门:http://codeforces.com/problemset/problem/617/E E. XOR and Favorite Number time limit per test 4 seconds memory limit per test 256 megabytes input standard input output standard output Bob has a favorite number k and ai of length n. Now he asks yo

CF617E XOR and Favorite Number

\(\verb|CF617E XOR and Favorite Number|\) 已知一个序列 \(a_1,\ a_2,\ \cdots,\ a_n\) 和 \(k\) ,\(m\) 次询问给出 \(l,\ r\) ,求 \(\displaystyle\sum_{i=l}^r\sum_{j=i}^r[a_x\oplus a_{x+1}\oplus \cdots \oplus a_y=k]\) \(n,\ m\leq10^5,\ 0\leq a_i,\ k\leq10^6\) 莫队 重题 \(\

CodeFroce Round 340 div2 E XOR and Favorite Number【莫队算法】

题面: Bob has a favorite number k and ai of length n. Now he asks you to answer m queries. Each query is given by a pair li and ri and asks you to count the number of pairs of integers i and j, such that l?≤?i?≤?j?≤?r and the xor of the numbers ai,?ai?

CodeForces - 617E XOR and Favorite Number (莫队+前缀和)

Bob has a favorite number k and ai of length n. Now he asks you to answer m queries. Each query is given by a pair li and ri and asks you to count the number of pairs of integers i and j, such that l ≤ i ≤ j ≤ r and the xor of the numbers ai, ai + 1,

Codeforces 617 E. XOR and Favorite Number

题目链接:http://codeforces.com/problemset/problem/617/E 一看这种区间查询的题目,考虑一下莫队. 如何${O(1)}$的修改和查询呢? 令${f(i,j)}$表示区间${\left [ l,r \right ]}$内数字的异或和. 那么:${f(l,r)=f(1,r)~~xor~~f(1,l-1)=k}$ 记一下前缀异或和即可维护. 1 #include<iostream> 2 #include<cstdio> 3 #include&l

codeforces 617 E. XOR and Favorite Number(莫队算法)

题目链接:http://codeforces.com/problemset/problem/617/E 题目: 给你a1 a2 a3 ··· an 个数,m次询问:在[L, R] 里面又多少中 [l, r] 使得 al xor al+1 xor ··· ar 为 k. 题解: 本题只有区间查询没有区间修改,而且数据量不大(10w),所以可以用离线的方法解决. 使用莫队算法来解决,就需要O(1)的修改[L, R+1] .[L, R-1].[L+1, R].[L-1, R]. 详细的莫队可以百度学一

(莫队算法)CodeForces - 617E XOR and Favorite Number

题意: 长度为n的数列,m次询问,还有一个k.每次询问询问询问从数列的L到R内有多少个连续子序列异或起来等于k. 分析: 因为事先知道这题可以用莫队写,就正好用这题练习莫队. 预处理每个前缀异或和. 然后莫队按分块排序后,不断更新,用一个数组cnt[]记录当前L到R前缀和的数量. R向右拉,新增的数量就是cnt[pre^k],pre表示当前这个R位置的前缀异或和,然后更新一下cnt. 其他的也类似. 算是一个比较好的入门题. 代码: 1 #include <cstdio> 2 #include

CodeForces 617E XOR and Favorite Number

莫队算法. #include<cstdio> #include<cmath> #include<cstring> #include<algorithm> using namespace std; const int maxn=100000+10; int a[maxn],pre[maxn]; long long cnt[20*maxn]; int pos[maxn]; int n,m,k; long long ans[maxn]; long long Ans