A14746 | Build the Permutation
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
You are given three integers $n, a, b$ . Determine if there exists a permutation $p_1, p_2, \ldots, p_n$ of integers from $1$ to $n$ , such that:
- There are exactly $a$ integers $i$ with $2 \le i \le n-1$ such that $p_{i-1} < p_i > p_{i+1}$ (in other words, there are exactly $a$ local maximums).
- There are exactly $b$ integers $i$ with $2 \le i \le n-1$ such that $p_{i-1} > p_i < p_{i+1}$ (in other words, there are exactly $b$ local minimums).
If such permutations exist, find any such permutation.
- There are exactly $a$ integers $i$ with $2 \le i \le n-1$ such that $p_{i-1} < p_i > p_{i+1}$ (in other words, there are exactly $a$ local maximums).
- There are exactly $b$ integers $i$ with $2 \le i \le n-1$ such that $p_{i-1} > p_i < p_{i+1}$ (in other words, there are exactly $b$ local minimums).
If such permutations exist, find any such permutation.
输入格式
The first line of the input contains a single integer $t$ ( $1 \le t \le 10^4$ ) — the number of test cases. The description of test cases follows.
The only line of each test case contains three integers $n$ , $a$ and $b$ ( $2 \leq n \leq 10^5$ , $0 \leq a,b \leq n$ ).
The sum of $n$ over all test cases doesn't exceed $10^5$ .
The only line of each test case contains three integers $n$ , $a$ and $b$ ( $2 \leq n \leq 10^5$ , $0 \leq a,b \leq n$ ).
The sum of $n$ over all test cases doesn't exceed $10^5$ .
输出格式
For each test case, if there is no permutation with the requested properties, output $-1$ .
Otherwise, print the permutation that you are found. If there are several such permutations, you may print any of them.
Otherwise, print the permutation that you are found. If there are several such permutations, you may print any of them.
输入输出样例
输入 #1
3 4 1 1 6 1 2 6 4 0
输出 #1
1 3 2 4 4 2 3 1 5 6 -1
In the first test case, one example of such permutations is $[1, 3, 2, 4]$ . In it $p_1 < p_2 > p_3$ , and $2$ is the only such index, and $p_2> p_3 < p_4$ , and $3$ the only such index.
One can show that there is no such permutation for the third test case.
One can show that there is no such permutation for the third test case.
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted