time limit per test4 seconds

memory limit per test256 megabytes

inputstandard input

outputstandard 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 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, …, aj is equal to k.

Input

The first line of the input contains integers n, m and k (1 ≤ n, m ≤ 100 000, 0 ≤ k ≤ 1 000 000) — the length of the array, the number of queries and Bob’s favorite number respectively.

The second line contains n integers ai (0 ≤ ai ≤ 1 000 000) — Bob’s array.

Then m lines follow. The i-th line contains integers li and ri (1 ≤ li ≤ ri ≤ n) — the parameters of the i-th query.

Output

Print m lines, answer the queries in the order they appear in the input.

Examples

input

6 2 3

1 2 1 1 0 3

1 6

3 5

output

7

0

input

5 3 1

1 1 1 1 1

1 5

2 4

1 3

output

9

4

4

Note

In the first sample the suitable pairs of i and j for the first query are: (1, 2), (1, 4), (1, 5), (2, 3), (3, 6), (5, 6), (6, 6). Not a single of these pairs is suitable for the second query.

In the second sample xor equals 1 for all subarrays of an odd length.

【题解】



给你n个数字;

m个询问li,ri;

要让你在[li,ri]这个区间里面找到下标对i,j;

使得a[i]xor a[i+1] xor a[i+2]..xor a[j] == k;

让你输出在li,ri内这样的i,j对的个数;

n=10W;

m=100W;

每个数字ai最大为100W为非负数;

设sum[i]表示前i个数字的异或值;

离线处理询问;左端升序排;左端相同右端升序排;

然后从第一个询问开始处理;

设区间为L..R;

则i从L->R递增flag[sum[i]]

然后遇到一个sum[i]则递增答案flag[k^sum[i]];

假设k^sum[i] = sum[x] (x小于i);

则有sum[x]^sum[i] = k;

而sum[i]^sum[x]实际上就是a[x+1]^a[x+2]..^a[i];

所以这个方式是可行的;

这样我们就能找出所有的点对了;

然后因为询问经过排序处理;

所以相邻询问的l和r和我们刚处理过的L,R是很接近的;

如果l

#include <cstdio>
#include <cmath>
#include <set>
#include <map>
#include <iostream>
#include <algorithm>
#include <cstring>
#include <queue>
#include <vector>
#include <stack>
#include <string>
#define lson L,m,rt<<1
#define rson m+1,R,rt<<1|1
#define LL long long using namespace std; const int MAXN = 209999;
const int MAX_SIZE = 1009999; const int dx[5] = {0,1,-1,0,0};
const int dy[5] = {0,0,0,-1,1};
const double pi = acos(-1.0); struct abc
{
int l,r,id;
}; int n,m,k,sum[MAXN];
LL ans[MAXN];
int flag[MAX_SIZE*2] = {0};
abc Q[MAXN]; void input_LL(LL &r)
{
r = 0;
char t = getchar();
while (!isdigit(t)) t = getchar();
LL sign = 1;
if (t == '-')sign = -1;
while (!isdigit(t)) t = getchar();
while (isdigit(t)) r = r * 10 + t - '0', t = getchar();
r = r*sign;
} void input_int(int &r)
{
r = 0;
char t = getchar();
while (!isdigit(t)) t = getchar();
int sign = 1;
if (t == '-')sign = -1;
while (!isdigit(t)) t = getchar();
while (isdigit(t)) r = r * 10 + t - '0', t = getchar();
r = r*sign;
} bool cmp(abc a,abc b)
{
if (a.l/400!=b.l/400)
return a.l/400<b.l/400;
else
return a.r < b.r;
} int main()
{
//freopen("F:\\rush.txt", "r", stdin);
input_int(n);input_int(m);input_int(k);
for (int i = 1;i <= n;i++)
{
int x;
input_int(x);
sum[i] = sum[i-1] ^ x;
}
for (int i = 1;i <= m;i++)
input_int(Q[i].l),input_int(Q[i].r),Q[i].l--,Q[i].id = i;
sort(Q+1,Q+1+m,cmp);
int L,R;
LL s = 0;
L = Q[1].l,R=Q[1].r;
for (int i = L;i <= R;i++)
{
s+= flag[k^sum[i]];
flag[sum[i]]++;
}
ans[Q[1].id] = s;
for (int i = 2;i <= m;i++)
{
int l = Q[i].l,r=Q[i].r;
while (L>l)
{
L--;
s+=flag[k^sum[L]];
flag[sum[L]]++;
}
while (L<l)
{
flag[sum[L]]--;
s-=flag[k^sum[L]];
L++;
}
while (R>r)
{
flag[sum[R]]--;
s-=flag[k^sum[R]];
R--;
}
while (R<r)
{
R++;
s+=flag[k^sum[R]];
flag[sum[R]]++;
}
ans[Q[i].id] = s;
}
for (int i = 1;i <= m;i++)
printf("%I64d\n",ans[i]);
return 0;
}

【第400篇题解纪念2016年10月28日】【28.10%】【codeforces 617E】XOR and Favorite Number的更多相关文章

  1. 2016年12月15日 星期四 --出埃及记 Exodus 21:10

    2016年12月15日 星期四 --出埃及记 Exodus 21:10 If he marries another woman, he must not deprive the first one o ...

  2. 2016年11月19日 星期六 --出埃及记 Exodus 20:10

    2016年11月19日 星期六 --出埃及记 Exodus 20:10 but the seventh day is a Sabbath to the LORD your God. On it you ...

  3. 2016年10月31日 星期一 --出埃及记 Exodus 19:16

    2016年10月31日 星期一 --出埃及记 Exodus 19:16 On the morning of the third day there was thunder and lightning, ...

  4. 2016年10月30日 星期日 --出埃及记 Exodus 19:15

    2016年10月30日 星期日 --出埃及记 Exodus 19:15 Then he said to the people, "Prepare yourselves for the thi ...

  5. 2016年10月29日 星期六 --出埃及记 Exodus 19:14

    2016年10月29日 星期六 --出埃及记 Exodus 19:14 After Moses had gone down the mountain to the people, he consecr ...

  6. 2016年10月27日 星期四 --出埃及记 Exodus 19:12

    2016年10月27日 星期四 --出埃及记 Exodus 19:12 Put limits for the people around the mountain and tell them, `Be ...

  7. 2016年10月26日 星期三 --出埃及记 Exodus 19:10-11

    2016年10月26日 星期三 --出埃及记 Exodus 19:10-11 And the LORD said to Moses, "Go to the people and consec ...

  8. 2016年10月25日 星期二 --出埃及记 Exodus 19:9

    2016年10月25日 星期二 --出埃及记 Exodus 19:9 The LORD said to Moses, "I am going to come to you in a dens ...

  9. 2016年10月24日 星期一 --出埃及记 Exodus 19:8

    2016年10月24日 星期一 --出埃及记 Exodus 19:8 The people all responded together, "We will do everything th ...

随机推荐

  1. 洛谷 P2025 脑力大人之监听电话

    P2025 脑力大人之监听电话 题目背景 画外音: (声明:不要管前面那个,纯属意外,现已经重新编题,绝对原创) 上次海选,我们选出了参赛者中的20%参加本次比赛,现在我们将进行第二轮的筛选,这次的比 ...

  2. 三个水杯(BFS)

    三个水杯 时间限制:1000 ms  |  内存限制:65535 KB 难度:4 描写叙述 给出三个水杯.大小不一,而且仅仅有最大的水杯的水是装满的,其余两个为空杯子. 三个水杯之间相互倒水,而且水杯 ...

  3. Javascript和jquery事件--鼠标移动事件mousemove

    mousemove,一个监听元素上鼠标移动的事件,如果鼠标在元素上移动,大概每16毫秒触发一次.我觉得挺有趣的一个元素,不过有替代还是不太推荐,从这个事件的触发频率就可以看出它会拖慢响应速度,消耗资源 ...

  4. python3 格式化输出给定时间的下一秒

    # 功能:输入一个时间,格式化输出该时间的下一秒 #!/usr/bin/env python # -*- coding:utf-8 -*- # Author:Hiuhung Wan # 功能:输入一个 ...

  5. 百度糯米iOSclient登录BUG

    环境 设备:iphone5s 网络:WIFI App版本号: 操作步骤 1.进入登录界面 2.输入手机号 3.点击[获取验证码],等待接收验证码后 4.点击[X]退出登录界面 5.反复1-2-3,提示 ...

  6. 从Unreal Engine 3到Unreal Engine 4

    Unreal Engine 4公布好长好长时间了.直到近期才有时间细致去看一下. TimSweeney老大一句话"IF YOU LOVE SOMETHING, SET IT FREE&quo ...

  7. 算法-对分查找(二分查找)C++实现

    这个是个主要的查找算法.由于仅仅是把数读入就须要(N)的时间量,因此我们在说这类问题的时候都是如果读入过的. 在算法经常使用的时间.将问题缩小为一部分(大约1/2),那么我们就觉得这个算法是O(log ...

  8. 算法 Tricks(四)—— 判断序列中的字符/数值是否交替出现

    比如:353, 54545,数字都是交替出现的: bool alternate = true; for (int i = 0; i < M.size(); ++i){ if (M[i] != M ...

  9. linux 查看 *.a *.so 符号表(zt)

    objdump -tT libName.so | grep symbel symbolName nm -D libName.so | grep symbel symbolName 很多非常熟悉wind ...

  10. HDU4911-Inversion

    题意:依据题目要求交换相邻的两个元素k次,使得最后剩下的逆序对数最少 思路:假设逆序数大于0,存在0 <= i < n使得交换Ai,Ai+1后逆序数降低1,所求答案就为max(invers ...