A14960 | Birthday
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
Vitaly gave Maxim $n$ numbers $1, 2, \ldots, n$ for his $16$ -th birthday. Maxim was tired of playing board games during the celebration, so he decided to play with these numbers. In one step Maxim can choose two numbers $x$ and $y$ from the numbers he has, throw them away, and add two numbers $x + y$ and $|x - y|$ instead. He wants all his numbers to be equal after several steps and the sum of the numbers to be minimal.
Help Maxim to find a solution. Maxim's friends don't want to wait long, so the number of steps in the solution should not exceed $20n$ . It is guaranteed that under the given constraints, if a solution exists, then there exists a solution that makes all numbers equal, minimizes their sum, and spends no more than $20n$ moves.
Help Maxim to find a solution. Maxim's friends don't want to wait long, so the number of steps in the solution should not exceed $20n$ . It is guaranteed that under the given constraints, if a solution exists, then there exists a solution that makes all numbers equal, minimizes their sum, and spends no more than $20n$ moves.
输入格式
The first line contains a single integer $t$ ( $1 \le t \le 25\,000$ ) — the number of test cases.
Each test case contains a single integer $n$ ( $2 \le n \le 5 \cdot 10^4$ ) — the number of integers given to Maxim.
It is guaranteed that the total sum of $n$ doesn't exceed $5 \cdot 10^4$ .
Each test case contains a single integer $n$ ( $2 \le n \le 5 \cdot 10^4$ ) — the number of integers given to Maxim.
It is guaranteed that the total sum of $n$ doesn't exceed $5 \cdot 10^4$ .
输出格式
For each test case print $-1$ if it's impossible to make all numbers equal.
Otherwise print a single integer $s$ ( $0 \le s \le 20n$ ) — the number of steps. Then print $s$ lines. The $i$ -th line must contain two integers $x_i$ and $y_i$ — numbers that Maxim chooses on the $i$ -th step. The numbers must become equal after all operations.
Don't forget that you not only need to make all numbers equal, but also minimize their sum. It is guaranteed that under the given constraints, if a solution exists, then there exists a solution that makes all numbers equal, minimizes their sum, and spends no more than $20n$ moves.
Otherwise print a single integer $s$ ( $0 \le s \le 20n$ ) — the number of steps. Then print $s$ lines. The $i$ -th line must contain two integers $x_i$ and $y_i$ — numbers that Maxim chooses on the $i$ -th step. The numbers must become equal after all operations.
Don't forget that you not only need to make all numbers equal, but also minimize their sum. It is guaranteed that under the given constraints, if a solution exists, then there exists a solution that makes all numbers equal, minimizes their sum, and spends no more than $20n$ moves.
输入输出样例
输入 #1
2 2 3
输出 #1
-1 3 1 3 2 2 4 0
暂无题解
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted