A13432 | Perfect Triples
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
Consider the infinite sequence $s$ of positive integers, created by repeating the following steps:
1. Find the lexicographically smallest triple of positive integers $(a, b, c)$ such that
- $a \oplus b \oplus c = 0$ , where $\oplus$ denotes the [bitwise XOR operation](https://en.wikipedia.org/wiki/Bitwise_operation#XOR).
- $a$ , $b$ , $c$ are not in $s$ .
Here triple of integers $(a_1, b_1, c_1)$ is considered to be lexicographically smaller than triple $(a_2, b_2, c_2)$ if sequence $[a_1, b_1, c_1]$ is lexicographically smaller than sequence $[a_2, b_2, c_2]$ .
2. Append $a$ , $b$ , $c$ to $s$ in this order.
3. Go back to the first step.
You have integer $n$ . Find the $n$ -th element of $s$ .
You have to answer $t$ independent test cases.
A sequence $a$ is lexicographically smaller than a sequence $b$ if in the first position where $a$ and $b$ differ, the sequence $a$ has a smaller element than the corresponding element in $b$ .
1. Find the lexicographically smallest triple of positive integers $(a, b, c)$ such that
- $a \oplus b \oplus c = 0$ , where $\oplus$ denotes the [bitwise XOR operation](https://en.wikipedia.org/wiki/Bitwise_operation#XOR).
- $a$ , $b$ , $c$ are not in $s$ .
Here triple of integers $(a_1, b_1, c_1)$ is considered to be lexicographically smaller than triple $(a_2, b_2, c_2)$ if sequence $[a_1, b_1, c_1]$ is lexicographically smaller than sequence $[a_2, b_2, c_2]$ .
2. Append $a$ , $b$ , $c$ to $s$ in this order.
3. Go back to the first step.
You have integer $n$ . Find the $n$ -th element of $s$ .
You have to answer $t$ independent test cases.
A sequence $a$ is lexicographically smaller than a sequence $b$ if in the first position where $a$ and $b$ differ, the sequence $a$ has a smaller element than the corresponding element in $b$ .
输入格式
The first line contains a single integer $t$ ( $1 \le t \le 10^5$ ) — the number of test cases.
Each of the next $t$ lines contains a single integer $n$ ( $1\le n \le 10^{16}$ ) — the position of the element you want to know.
Each of the next $t$ lines contains a single integer $n$ ( $1\le n \le 10^{16}$ ) — the position of the element you want to know.
输出格式
In each of the $t$ lines, output the answer to the corresponding test case.
输入输出样例
输入 #1
9 1 2 3 4 5 6 7 8 9
输出 #1
1 2 3 4 8 12 5 10 15
The first elements of $s$ are $1, 2, 3, 4, 8, 12, 5, 10, 15, \dots $
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted