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, ..., ajis equal to k.

Input

The first line of the input contains integers nm 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
  1. 6 2 3
    1 2 1 1 0 3
    1 6
    3 5
Output
  1. 7
    0
Input
  1. 5 3 1
    1 1 1 1 1
    1 5
    2 4
    1 3
Output
  1. 9
    4
    4
  2.  
  3. 题意:
    询问区间内异或和刚好为k的字段个数。
    思路:
    莫队+前缀和。
    这个前缀和比较套路,用的是前缀异或和。
    字段【l,r】的异或和就是pre[r]^pre[l-1],
    这种情况下我们在莫队的过程中记录lrpre[i]出现的次数,就可以完成更新了。
  4.  
  5. 注意当L<q[i].l时,要先让记录per[L]出现次数的个数减一。
  1. #include<iostream>
  2. #include<algorithm>
  3. #include<vector>
  4. #include<stack>
  5. #include<queue>
  6. #include<map>
  7. #include<set>
  8. #include<cstdio>
  9. #include<cstring>
  10. #include<cmath>
  11. #include<ctime>
  12. #define fuck(x) cout<<#x<<" = "<<x<<endl;
  13. #define debug(a,i) cout<<#a<<"["<<i<<"] = "<<a[i]<<endl;
  14. #define ls (t<<1)
  15. #define rs ((t<<1)+1)
  16. using namespace std;
  17. typedef long long ll;
  18. typedef unsigned long long ull;
  19. const int maxn = ;
  20. const int maxm = ;
  21. const int inf = 2.1e9;
  22. const ll Inf = ;
  23. const int mod = ;
  24. const double eps = 1e-;
  25. const double pi = acos(-);
  26. int num[maxm*],pre[maxn],a[maxn];
  27.  
  28. struct node{
  29. int l,r;
  30. int id;
  31. }q[maxn];
  32. ll ans[maxn];
  33. ll anss;
  34. int block;
  35.  
  36. bool cmp(node a,node b){
  37. if(a.l/block!=b.l/block){return a.l<b.l;}
  38. return a.r<b.r;
  39. }
  40.  
  41. int main()
  42. {
  43. int n,m,k;
  44. scanf("%d%d%d",&n,&m,&k);
  45. for(int i=;i<=n;i++){
  46. scanf("%d",&a[i]);
  47. pre[i]=pre[i-]^a[i];
  48. }
  49.  
  50. block=sqrt(n);
  51.  
  52. for(int i=;i<=m;i++){
  53. scanf("%d%d",&q[i].l,&q[i].r);
  54. q[i].id=i;
  55. }
  56.  
  57. sort(q+,q++m,cmp);
  58. int L=,R=;
  59. anss=;
  60. num[]=;
  61. for(int i=;i<=m;i++){
  62. while(L<q[i].l){
  63. int t=k^pre[L-];
  64. num[pre[L-]]--;///注意语句顺序
  65. anss-=num[t];
  66. L++;
  67. }
  68. while(R>q[i].r){
  69. int t=k^pre[R];
  70. num[pre[R]]--;
  71. anss-=num[t];
  72. R--;
  73. }
  74. while(L>q[i].l){
  75. L--;
  76. int t=k^pre[L-];
  77. anss+=num[t];
  78. num[pre[L-]]++;
  79. }
  80. while(R<q[i].r){
  81. R++;
  82. int t=k^pre[R];
  83. anss+=num[t];
  84. num[pre[R]]++;
  85. }
  86. ans[q[i].id]=anss;
  87. }
  88. for(int i=;i<=m;i++){
  89. printf("%lld\n",ans[i]);
  90. }
  91. return ;
  92. }

CodeForces - 617E XOR and Favorite Number (莫队+前缀和)的更多相关文章

  1. CodeForces - 617E XOR and Favorite Number 莫队算法

    https://vjudge.net/problem/CodeForces-617E 题意,给你n个数ax,m个询问Ly,Ry,  问LR内有几对i,j,使得ai^...^ aj =k. 题解:第一道 ...

  2. Codeforces 617E XOR and Favorite Number莫队

    http://codeforces.com/contest/617/problem/E 题意:给出q个查询,每次询问区间内连续异或值为k的有几种情况. 思路:没有区间修改,而且扩展端点,减小端点在前缀 ...

  3. codeforces 617E. XOR and Favorite Number 莫队

    题目链接 给n个数, m个询问, 每次询问问你[l, r]区间内有多少对(i, j), 使得a[i]^a[i+1]^......^a[j]结果为k. 维护一个前缀异或值就可以了. 要注意的是 区间[l ...

  4. CODEFORCES 340 XOR and Favorite Number 莫队模板题

    原来我直接学的是假的莫队 原题: Bob has a favorite number k and ai of length n. Now he asks you to answer m queries ...

  5. Codeforces Round #340 (Div. 2) E 莫队+前缀异或和

    E. XOR and Favorite Number time limit per test 4 seconds memory limit per test 256 megabytes input s ...

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

    题目链接: E. XOR and Favorite Number time limit per test 4 seconds memory limit per test 256 megabytes i ...

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

    题目大概说给一个序列,多次询问区间异或和为k的连续子序列有多少个. 莫队算法,利用异或的性质,通过前缀和求区间和,先处理出序列各个前缀和,然后每次区间转移时维护i以及i-1前缀和为某数的个数并增加或减 ...

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

    E. XOR and Favorite Number 题目连接: http://www.codeforces.com/contest/617/problem/E Descriptionww.co Bo ...

  9. 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 ...

随机推荐

  1. facebook第三方登录

    一:创建和配置开发者应用 https://developers.facebook.com 登录开发者(可能要手机验证,身份证严重)->创建应用(web )->填写配置,网站网址和应用域名需 ...

  2. NLP+2vec︱认识多种多样的2vec向量化模型

    1.word2vec 耳熟能详的NLP向量化模型. Paper: https://papers.nips.cc/paper/5021-distributed-representations-of-wo ...

  3. 2016中国银行Top100榜单发布 工行排首位

    2016中国银行Top100榜单发布 工行排首位 2016-07-09 15:13:19 第一财经   2016年7月8日,中国银行业协会在京召开“<中国银行业发展报告(2016)>发布会 ...

  4. nodeJs学习-11 multer中间件,解析post文件,上传文件

    const express=require('express'); const bodyParser=require('body-parser'); const multer=require('mul ...

  5. 重装系统后ORACLE数据库恢复的方法

    如果我们的操作系统出现问题,重装系统后,ORACLE数据库应该如何恢复呢?下文就为您列举了两个重装系统后ORACLE数据库恢复的方法,供您参考. ORACLE数据库恢复的方法我们经常会用到,下面就为您 ...

  6. jquery attr()和prop()方法的区别

    $('').attr()返回的是html对象 $('').prop()返回的是DOM对象 attr(): attr() 方法设置或返回被选元素的属性和值. 当该方法用于返回属性值,则返回第一个匹配元素 ...

  7. hdu 3329 The Flood (Flood Fill + MFSet)

    Problem - 3329 用pfs,将淹没时间调整回来,然后用并查集,时间倒序插入点. 代码如下: #include <iostream> #include <algorithm ...

  8. Win7如何显示文件后缀

    有些时候,我们需要修改文件的后缀名,但是Windows7系统默认不显示文件后缀.我们怎样显示和修改文件后缀呢?请接着往下看. 工具/原料   一个win7系统 方法/步骤   1 如图所示,此时是无法 ...

  9. CSS3表达式calc( )

    CSS3表达式calc( ) 第一次看到calc( )时,不太相信calc()是css中的部分.因为看其外表像个函数,但是CSS里为啥会有表达式我也不太清楚,偶然机会在网页里看到的,自己切片写自适应时 ...

  10. 学习HTML<audio>标签

    首先来看下这个例子: <audio controls autoplay="autoplay"> <source src="horse.ogg" ...