题目链接:

http://codeforces.com/contest/703/problem/D

D. Mishka and Interesting sum

time limit per test 3.5 seconds
memory limit per test 256 megabytes
#### 问题描述
> Little Mishka enjoys programming. Since her birthday has just passed, her friends decided to present her with array of non-negative integers a1, a2, ..., an of n elements!
>
> Mishka loved the array and she instantly decided to determine its beauty value, but she is too little and can't process large arrays. Right because of that she invited you to visit her and asked you to process m queries.
>
> Each query is processed in the following way:
>
> Two integers l and r (1 ≤ l ≤ r ≤ n) are specified — bounds of query segment.
> Integers, presented in array segment [l,  r] (in sequence of integers al, al + 1, ..., ar) even number of times, are written down.
> XOR-sum of written down integers is calculated, and this value is the answer for a query. Formally, if integers written down in point 2 are x1, x2, ..., xk, then Mishka wants to know the value , where — operator of exclusive bitwise OR.
> Since only the little bears know the definition of array beauty, all you are to do is to answer each of queries presented.
#### 输入
> The first line of the input contains single integer n (1 ≤ n ≤ 1 000 000) — the number of elements in the array.
>
> The second line of the input contains n integers a1, a2, ..., an (1 ≤ ai ≤ 109) — array elements.
>
> The third line of the input contains single integer m (1 ≤ m ≤ 1 000 000) — the number of queries.
>
> Each of the next m lines describes corresponding query by a pair of integers l and r (1 ≤ l ≤ r ≤ n) — the bounds of query segment.
#### 输出
> Print m non-negative integers — the answers for the queries in the order they appear in the input.
#### 样例
> **sample input**
> 7
> 1 2 1 3 3 2 3
> 5
> 4 7
> 4 5
> 1 3
> 1 7
> 1 5
>
> **sample output**
> 0
> 3
> 1
> 3
> 2

题意

求一个区间内所有出现次数为偶数次的数的异或和。

题解

如果题目叫我们求区间内所有出现次数为奇数次的数的异或和,那就好办了,直接把区间所有的数都异或起来就可以了。

现在我们把问题转换一下:我们先求出所有的数的异或和sum1,然后再求出区间内所有不同的数的异或和sum2,那么ans=sum1^sum2.

对于sum1可以O(n)跑前缀异或和,也可以跑线段树。而对于sum2我们可以用离线的线段树来处理(搓这里)。

代码

  1. #include<iostream>
  2. #include<cstdio>
  3. #include<map>
  4. #include<algorithm>
  5. #include<cstring>
  6. #define lson (o<<1)
  7. #define rson ((o<<1)|1)
  8. #define M l+(r-l)/2
  9. #define X first
  10. #define Y second
  11. #define mkp make_pair
  12. using namespace std;
  13. const int maxn = 1e6 + 10;
  14. const int maxq = 1e6 + 10;
  15. typedef int LL;
  16. LL sumv[maxn << 2],sumv2[maxn<<2];
  17. map<int, pair<int,int> > mp;
  18. int arr[maxn];
  19. LL ans[maxq];
  20. struct Node {
  21. int l, r, id;
  22. bool operator <(const Node& tmp) const {
  23. return r < tmp.r;
  24. }
  25. } nds[maxq];
  26. int ql, qr;
  27. LL _sumv,_sumv2;
  28. void query(int o, int l, int r) {
  29. if (ql <= l&&r <= qr) {
  30. _sumv ^= sumv[o];
  31. _sumv2 ^= sumv2[o];
  32. }
  33. else {
  34. if (ql <= M) query(lson, l, M);
  35. if (qr>M) query(rson, M + 1, r);
  36. }
  37. }
  38. int _p, _v;
  39. void update(int o, int l, int r,int type) {
  40. if (l == r) {
  41. if(type==1) sumv[o] = _v;
  42. else sumv2[o] = _v;
  43. }
  44. else {
  45. if (_p <= M) update(lson, l, M,type);
  46. else update(rson, M + 1, r,type);
  47. if(type==1) sumv[o] = sumv[lson] ^ sumv[rson];
  48. else sumv2[o] = sumv2[lson] ^ sumv2[rson];
  49. }
  50. }
  51. int n;
  52. void init() {
  53. memset(sumv, 0, sizeof(sumv));
  54. mp.clear();
  55. }
  56. int main() {
  57. init();
  58. scanf("%d", &n);
  59. for (int i = 1; i <= n; i++) {
  60. scanf("%d", &arr[i]);
  61. _p = i; _v = arr[i]; update(1, 1, n, -1);
  62. }
  63. int q;
  64. scanf("%d", &q);
  65. for (int i = 0; i < q; i++) {
  66. scanf("%d%d", &nds[i].l, &nds[i].r);
  67. nds[i].id = i;
  68. }
  69. sort(nds, nds + q);
  70. int pos = 1;
  71. for (int i = 0; i < q; i++) {
  72. int l = nds[i].l, r = nds[i].r, id = nds[i].id;
  73. while (pos <= r) {
  74. if (mp.count(arr[pos])) {
  75. _p = mp[arr[pos]].X, _v = 0;
  76. update(1, 1, n,1);
  77. }
  78. mp[arr[pos]].X = pos;
  79. _p = pos, _v = arr[pos];
  80. update(1, 1, n,1);
  81. pos++;
  82. }
  83. ql = l, qr = r;
  84. _sumv = 0,_sumv2=0;
  85. query(1, 1, n);
  86. ans[id] = _sumv^_sumv2;
  87. }
  88. for (int i = 0; i < q; i++) {
  89. printf("%d\n", ans[i]);
  90. }
  91. return 0;
  92. }

Codeforces Round #365 (Div. 2) D. Mishka and Interesting sum 离线+线段树的更多相关文章

  1. Codeforces Round #365 (Div. 2) D. Mishka and Interesting sum (离线树状数组+前缀xor)

    题目链接:http://codeforces.com/contest/703/problem/D 给你n个数,m次查询,每次查询问你l到r之间出现偶数次的数字xor和是多少. 我们可以先预处理前缀和X ...

  2. Codeforces Round #365 (Div. 2) D.Mishka and Interesting sum 树状数组+离线

    D. Mishka and Interesting sum time limit per test 3.5 seconds memory limit per test 256 megabytes in ...

  3. Codeforces Round #365 (Div. 2)-D Mishka and Interesting sum(树状数组)

    题目链接:http://codeforces.com/contest/703/problem/D 思路:看了神犇的代码写的... 偶数个相同的数异或结果为0,所以区间ans[l , r]=区间[l , ...

  4. Codeforces Round #365 (Div. 2) D - Mishka and Interesting sum(离线树状数组)

    http://codeforces.com/contest/703/problem/D 题意: 给出一行数,有m次查询,每次查询输出区间内出现次数为偶数次的数字的异或和. 思路: 这儿利用一下异或和的 ...

  5. Codeforces Round #365 (Div. 2) D.Mishka and Interesting sum

    题目链接:传送门 题目大意:给n个数,m次询问,每次询问区间 l,r 内出现偶数次数的异或和 题目思路:前缀和+离线处理+树状数组 首先可以知道, l,r 内出现奇数次的数的和,就是把 l,r内所有数 ...

  6. CF #365 (Div. 2) D - Mishka and Interesting sum 离线树状数组

    题目链接:CF #365 (Div. 2) D - Mishka and Interesting sum 题意:给出n个数和m个询问,(1 ≤ n, m ≤ 1 000 000) ,问在每个区间里所有 ...

  7. CF #365 (Div. 2) D - Mishka and Interesting sum 离线树状数组(转)

    转载自:http://www.cnblogs.com/icode-girl/p/5744409.html 题目链接:CF #365 (Div. 2) D - Mishka and Interestin ...

  8. Codeforces Round #538 (Div. 2) F 欧拉函数 + 区间修改线段树

    https://codeforces.com/contest/1114/problem/F 欧拉函数 + 区间更新线段树 题意 对一个序列(n<=4e5,a[i]<=300)两种操作: 1 ...

  9. Codeforces Round #222 (Div. 1) B. Preparing for the Contest 二分+线段树

    B. Preparing for the Contest 题目连接: http://codeforces.com/contest/377/problem/B Description Soon ther ...

随机推荐

  1. C#中的委托、事件和设计模式(转载)

    引言 委托和事件在 .Net Framework中的应用非常广泛,然而,较好地理解委托和事件对很多接触C#时间不长的人来说并不容易.它们就像是一道槛儿,过了这个槛的人,觉得真是太容易了,而没有过去的人 ...

  2. C# 获取web.config配置文件内容

    1.web.config提供对客户端应用程序配置文件的访问. 其有两个属性1.ConnectionStrings 获取当前应用程序默认配置的 ConnectionStringsSection 数据. ...

  3. [leetcode]_Maximum Depth of Binary Tree

    第三道树的题目,我还是不会,我擦,怎么递归算法还是不能很好理解.看来还得好好研究下递归算法. 题目:求一棵树的最大深度. 思路:递归地求取左子树最大深度 和 右子树最大深度,返回较大值即为 整棵树的 ...

  4. A-Frame_简单介绍

    VR框架A-Frame: https://aframe.io 版本: 0.2.0    30/6/2016 A-Frame 是一个能够实现在web网页上实现3D和VR体验的开源框架,它是由 MozVR ...

  5. 14)Java中Assert

    J2SE 1.4在语言上提供了一个新特性,就是assertion(断言)功能,它是该版本在Java语言方面最大的革新.在软件开发中,assertion是一种经典的调试.测试方式. jvm 断言默认是关 ...

  6. Windos中无法删除桌面IE图标的解决方法

    解决方法其实并不难,打开注册表,转到如下图的位置,详细地址在图片最下面: 需要注意的是,你需要在NameSpace中逐个查看各个项目的数据值,显示为数据值为Internet Explorer的项目即为 ...

  7. sql server查询数据库中所有表的行数

    select a.name,b.rows from sysobjects a,sysindexes b where a.name = b.name order by b.rows desc

  8. 每天进步一点--c#基础巩固,事件、委托

    要想技术有所提高,就是把有些问题真正的弄懂弄明白,我从事C#开发两年了,一直对事件委托等概念一知半解,有时候博客园上看看别的大牛的文章,看看懂了就过去了,时间长了又忘了,真正理解还是要自己动手弄些例子 ...

  9. Oracle 直方图实例测试

    --创建表 SQL> create table tab (a number, b number); Table created. --插入数据 SQL> begin .. loop ins ...

  10. AngularJs记录学习03

    AngularJs的路由是一个组件,需要自己额外添加,在目录/src/ngRoute中 三个文件route.js,routeParams.js,ngView.js <html> <h ...