A10386 | Little Robber Girl's Zoo
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
Little Robber Girl likes to scare animals in her zoo for fun. She decided to arrange the animals in a row in the order of non-decreasing height. However, the animals were so scared that they couldn't stay in the right places.
The robber girl was angry at first, but then she decided to arrange the animals herself. She repeatedly names numbers $l$ and $r$ such that $r-l+1$ is even. After that animals that occupy positions between $l$ and $r$ inclusively are rearranged as follows: the animal at position $l$ swaps places with the animal at position $l+1$ , the animal $l+2$ swaps with the animal $l+3$ , ..., finally, the animal at position $r-1$ swaps with the animal $r$ .
Help the robber girl to arrange the animals in the order of non-decreasing height. You should name at most $20000$ segments, since otherwise the robber girl will become bored and will start scaring the animals again.
The robber girl was angry at first, but then she decided to arrange the animals herself. She repeatedly names numbers $l$ and $r$ such that $r-l+1$ is even. After that animals that occupy positions between $l$ and $r$ inclusively are rearranged as follows: the animal at position $l$ swaps places with the animal at position $l+1$ , the animal $l+2$ swaps with the animal $l+3$ , ..., finally, the animal at position $r-1$ swaps with the animal $r$ .
Help the robber girl to arrange the animals in the order of non-decreasing height. You should name at most $20000$ segments, since otherwise the robber girl will become bored and will start scaring the animals again.
输入格式
The first line contains a single integer $n$ ( $1<=n<=100$ ) — number of animals in the robber girl's zoo.
The second line contains $n$ space-separated integers $a_{1},a_{2},...,a_{n}$ ( $1<=a_{i}<=10^{9}$ ), where $a_{i}$ is the height of the animal occupying the $i$ -th place.
The second line contains $n$ space-separated integers $a_{1},a_{2},...,a_{n}$ ( $1<=a_{i}<=10^{9}$ ), where $a_{i}$ is the height of the animal occupying the $i$ -th place.
输出格式
Print the sequence of operations that will rearrange the animals by non-decreasing height.
The output should contain several lines, $i$ -th of the lines should contain two space-separated integers $l_{i}$ and $r_{i}$ ( $1<=l_{i}<r_{i}<=n$ ) — descriptions of segments the robber girl should name. The segments should be described in the order the operations are performed.
The number of operations should not exceed $20000$ .
If the animals are arranged correctly from the start, you are allowed to output nothing.
The output should contain several lines, $i$ -th of the lines should contain two space-separated integers $l_{i}$ and $r_{i}$ ( $1<=l_{i}<r_{i}<=n$ ) — descriptions of segments the robber girl should name. The segments should be described in the order the operations are performed.
The number of operations should not exceed $20000$ .
If the animals are arranged correctly from the start, you are allowed to output nothing.
输入输出样例
输入 #1
4 2 1 4 3
输出 #1
1 4
输入 #2
7 36 28 57 39 66 69 68
输出 #2
1 4 6 7
输入 #3
5 1 2 1 2 1
输出 #3
2 5 3 4 1 4 1 4
Note that you don't have to minimize the number of operations. Any solution that performs at most $20000$ operations is allowed.
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted