A14535 | MEXor Mixup
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
Alice gave Bob two integers $a$ and $b$ ( $a > 0$ and $b \ge 0$ ). Being a curious boy, Bob wrote down an array of non-negative integers with $\operatorname{MEX}$ value of all elements equal to $a$ and $\operatorname{XOR}$ value of all elements equal to $b$ .
What is the shortest possible length of the array Bob wrote?
Recall that the $\operatorname{MEX}$ (<a>Minimum EXcluded</a>) of an array is the minimum non-negative integer that does not belong to the array and the $\operatorname{XOR}$ of an array is the [bitwise XOR](https://en.wikipedia.org/wiki/Bitwise_operation#XOR) of all the elements of the array.
What is the shortest possible length of the array Bob wrote?
Recall that the $\operatorname{MEX}$ (<a>Minimum EXcluded</a>) of an array is the minimum non-negative integer that does not belong to the array and the $\operatorname{XOR}$ of an array is the [bitwise XOR](https://en.wikipedia.org/wiki/Bitwise_operation#XOR) of all the elements of the array.
输入格式
The input consists of multiple test cases. The first line contains an integer $t$ ( $1 \leq t \leq 5 \cdot 10^4$ ) — the number of test cases. The description of the test cases follows.
The only line of each test case contains two integers $a$ and $b$ ( $1 \leq a \leq 3 \cdot 10^5$ ; $0 \leq b \leq 3 \cdot 10^5$ ) — the $\operatorname{MEX}$ and $\operatorname{XOR}$ of the array, respectively.
The only line of each test case contains two integers $a$ and $b$ ( $1 \leq a \leq 3 \cdot 10^5$ ; $0 \leq b \leq 3 \cdot 10^5$ ) — the $\operatorname{MEX}$ and $\operatorname{XOR}$ of the array, respectively.
输出格式
For each test case, output one (positive) integer — the length of the shortest array with $\operatorname{MEX}$ $a$ and $\operatorname{XOR}$ $b$ . We can show that such an array always exists.
输入输出样例
输入 #1
5 1 1 2 1 2 0 1 10000 2 10000
输出 #1
3 2 3 2 3
In the first test case, one of the shortest arrays with $\operatorname{MEX}$ $1$ and $\operatorname{XOR}$ $1$ is $[0, 2020, 2021]$ .
In the second test case, one of the shortest arrays with $\operatorname{MEX}$ $2$ and $\operatorname{XOR}$ $1$ is $[0, 1]$ .
It can be shown that these arrays are the shortest arrays possible.
In the second test case, one of the shortest arrays with $\operatorname{MEX}$ $2$ and $\operatorname{XOR}$ $1$ is $[0, 1]$ .
It can be shown that these arrays are the shortest arrays possible.
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted