Mishka and Interesting sum(树状数组前缀和)

本文介绍了一种处理区间异或查询的高效算法,通过动态维护前缀和使用哈希表来跟踪元素出现次数,实现了对大规模数组的快速查询。文章详细解释了算法原理,包括如何利用异或运算的性质简化计算过程,并提供了完整的代码实现。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

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 nelements!

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:

  1. Two integers l and r (1 ≤ l ≤ r ≤ n) are specified — bounds of query segment.
  2. Integers, presented in array segment [l,  r] (in sequence of integers al, al + 1, ..., ar) even number of times, are written down.
  3. 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.

Input

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.

Output

Print m non-negative integers — the answers for the queries in the order they appear in the input.

Examples

Input

3
3 7 8
1
1 3

Output

0

Input

7
1 2 1 3 3 2 3
5
4 7
4 5
1 3
1 7
1 5

Output

0
3
1
3
2

首先,区间出现偶数次的数的异或 = 区间出现过的数的异或 ^ 区间出现奇数次的数的异或。

其次,任何一个数对自身进行偶数次异或都等于0,奇数次异或等于这个数自身。

所以区间出现奇数次的数的异或直接打一个前缀。

对于区间出现过的数的异或,假设一开始直接维护一个[1,n]的大区间,那么在具体位置对于每个数是否出现过我们是不得而知的,也就是没有办法实现状态之间的转移,所以我们动态的维护一个(1,x)的区间,对于每个在x位置出现的数,我们要让它

只对x及以后的区间产生作用,即让每一个出现的数尽可能的往后排。

#include <iostream>
#include <cstring>
#include <cstdlib>
#include <vector>
#include <cmath>
#include <algorithm>
#include <set>
#include <queue>
#include <string>
#include <map>
#define MAXN 1000004
#define MOD 1000000009
#define INF 0x7ffffff
#define lowbit(x) (x)&(-x)

using namespace std;

int n,m;
int tree[MAXN];
int pre[MAXN];
int a[MAXN];
int ans[MAXN];
map<int,int> mp;
vector<int> head[MAXN];
vector<int> index[MAXN];

void add(int k,int num){
    while(k <= n){
        tree[k] ^= num;
        k += lowbit(k);
    }
}

int getPre(int k){
    int sum = 0;
    while(k > 0){
        sum ^= tree[k];
        k -= lowbit(k);
    }
    return sum;
}

int main(){
    while(cin >> n){
        memset(tree,0,sizeof(tree));
        memset(pre,0,sizeof(pre));
        mp.clear();
        for(int i=1;i<=n;++i){
            scanf("%d",&a[i]);
            pre[i] = pre[i-1]^a[i];
        }

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

        for(int i=1;i<=n;++i){
            int x = mp[a[i]];
            if(x){
                add(x,a[i]); //对于之前就出现的过数,再add一次相当于偶数次异或,保证a[i]的位置尽可能靠后
            }
            mp[a[i]] = i;
            add(i,a[i]); //保证a[i]只对此处及之后的区间产生影响,保证了a[i]的位置尽可能靠后
            int len = head[i].size();
            for(int j=0;j<len;++j){
                ans[index[i][j]] = (getPre(i)^getPre(head[i][j]-1)^(pre[i]^pre[head[i][j]-1]));
            }
        }
        for(int i=1;i<=m;++i){
            cout << ans[i] << endl;
        }
    }
    return 0;
}

 

### CodeForces 上关于树状数组的题目列表 在CodeForces平台上,存在多个涉及树状数组的数据结构问题。以下是部分精选题目及其简短描述: #### 1. **799C - Fountains** 此题要求实现单点更新操作,在`A[]`数组中修改某一位置的值并相应地更新辅助数组`tree[]`。具体来说,当执行增加操作时,会通过循环不断更新受影响节点直到超出范围为止[^1]。 ```cpp void add(int k, int num) { while (k <= n) { tree[k] += num; k += k & (-k); } } ``` #### 2. **1042D - Array and Operations** 该挑战涉及到利用树状数组或线段树来高效处理特定类型的查询请求。核心思路在于将原始问题转化为计算前缀和中小于给定阈值的数量统计问题,从而简化了解决方案的设计过程[^2]。 #### 3. **1635F - Closest Pair** 这道难题不仅考察了参赛者对树状数组的理解程度,还测试了其解决复杂逻辑的能力。题目背景设定在一个有序序列基础上,目标是在指定范围内找到具有最小化评估函数的一对索引组合[^3]。 #### 4. **703D - Mishka and Interesting Contest** 本题聚焦于如何有效地求解区间内所有不同数值的异或结果。采用的方法是预先按右端点排序各区间,并记录每种元素最后一次出现的位置;之后借助树状数组完成后续所需的快速查找与更新工作[^4]。 这些例子展示了树状数组作为一种强大工具的应用场景,能够显著提升算法效率特别是在面对大规模数据集的情况下表现尤为突出。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值