A14216 | Array and Peaks
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
A sequence of $n$ integers is called a permutation if it contains all integers from $1$ to $n$ exactly once.
Given two integers $n$ and $k$ , construct a permutation $a$ of numbers from $1$ to $n$ which has exactly $k$ peaks. An index $i$ of an array $a$ of size $n$ is said to be a peak if $1 < i < n$ and $a_i \gt a_{i-1}$ and $a_i \gt a_{i+1}$ . If such permutation is not possible, then print $-1$ .
Given two integers $n$ and $k$ , construct a permutation $a$ of numbers from $1$ to $n$ which has exactly $k$ peaks. An index $i$ of an array $a$ of size $n$ is said to be a peak if $1 < i < n$ and $a_i \gt a_{i-1}$ and $a_i \gt a_{i+1}$ . If such permutation is not possible, then print $-1$ .
输入格式
The first line contains an integer $t$ ( $1 \leq t \leq 100$ ) — the number of test cases.
Then $t$ lines follow, each containing two space-separated integers $n$ ( $1 \leq n \leq 100$ ) and $k$ ( $0 \leq k \leq n$ ) — the length of an array and the required number of peaks.
Then $t$ lines follow, each containing two space-separated integers $n$ ( $1 \leq n \leq 100$ ) and $k$ ( $0 \leq k \leq n$ ) — the length of an array and the required number of peaks.
输出格式
Output $t$ lines. For each test case, if there is no permutation with given length and number of peaks, then print $-1$ . Otherwise print a line containing $n$ space-separated integers which forms a permutation of numbers from $1$ to $n$ and contains exactly $k$ peaks.
If there are multiple answers, print any.
If there are multiple answers, print any.
输入输出样例
输入 #1
5 1 0 5 2 6 6 2 1 6 1
输出 #1
1 2 4 1 5 3 -1 -1 1 3 6 5 4 2
In the second test case of the example, we have array $a = [2,4,1,5,3]$ . Here, indices $i=2$ and $i=4$ are the peaks of the array. This is because $(a_{2} \gt a_{1} $ , $a_{2} \gt a_{3})$ and $(a_{4} \gt a_{3}$ , $a_{4} \gt a_{5})$ .
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted