A10517 | Mishka and Interesting sum
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
Little Mishka enjoys programming. Since her birthday has just passed, her friends decided to present her with array of non-negative integers $a_{1},a_{2},...,a_{n}$ 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:
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 $a_{l},a_{l+1},...,a_{r}$ ) 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 $x_{1},x_{2},...,x_{k}$ , 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.
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 $a_{l},a_{l+1},...,a_{r}$ ) 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 $x_{1},x_{2},...,x_{k}$ , 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<=1000000$ ) — the number of elements in the array.
The second line of the input contains $n$ integers $a_{1},a_{2},...,a_{n}$ ( $1<=a_{i}<=10^{9}$ ) — array elements.
The third line of the input contains single integer $m$ ( $1<=m<=1000000$ ) — 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.
The second line of the input contains $n$ integers $a_{1},a_{2},...,a_{n}$ ( $1<=a_{i}<=10^{9}$ ) — array elements.
The third line of the input contains single integer $m$ ( $1<=m<=1000000$ ) — 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.
输入输出样例
输入 #1
3 3 7 8 1 1 3
输出 #1
0
输入 #2
7 1 2 1 3 3 2 3 5 4 7 4 5 1 3 1 7 1 5
输出 #2
0 3 1 3 2
In the second sample:
There is no integers in the segment of the first query, presented even number of times in the segment — the answer is $0$ .
In the second query there is only integer $3$ is presented even number of times — the answer is $3$ .
In the third query only integer $1$ is written down — the answer is $1$ .
In the fourth query all array elements are considered. Only $1$ and $2$ are presented there even number of times. The answer is .
In the fifth query $1$ and $3$ are written down. The answer is .
There is no integers in the segment of the first query, presented even number of times in the segment — the answer is $0$ .
In the second query there is only integer $3$ is presented even number of times — the answer is $3$ .
In the third query only integer $1$ is written down — the answer is $1$ .
In the fourth query all array elements are considered. Only $1$ and $2$ are presented there even number of times. The answer is .
In the fifth query $1$ and $3$ are written down. The answer is .
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted