A10070 | Simba on the Circle
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
You are given a circular array with $n$ elements. The elements are numbered from some element with values from $1$ to $n$ in clockwise order. The $i$ -th cell contains the value $a_{i}$ . The robot Simba is in cell $s$ .
Each moment of time the robot is in some of the $n$ cells (at the begin he is in $s$ ). In one turn the robot can write out the number written in current cell or move to the adjacent cell in clockwise or counterclockwise direction. To write out the number from the cell Simba doesn't spend any time, but to move to adjacent cell Simba spends one unit of time.
Simba wants to write the number from each cell one time, so the numbers will be written in a non decreasing order. Find the least number of time units to write out all numbers.
Each moment of time the robot is in some of the $n$ cells (at the begin he is in $s$ ). In one turn the robot can write out the number written in current cell or move to the adjacent cell in clockwise or counterclockwise direction. To write out the number from the cell Simba doesn't spend any time, but to move to adjacent cell Simba spends one unit of time.
Simba wants to write the number from each cell one time, so the numbers will be written in a non decreasing order. Find the least number of time units to write out all numbers.
输入格式
The first line contains two integers $n$ and $s$ ( $1<=s<=n<=2000$ ) — the number of cells in the circular array and the starting position of Simba.
The second line contains $n$ integers $a_{i}$ ( $-10^{9}<=a_{i}<=10^{9}$ ) — the number written in the $i$ -th cell. The numbers are given for cells in order from $1$ to $n$ . Some of numbers $a_{i}$ can be equal.
The second line contains $n$ integers $a_{i}$ ( $-10^{9}<=a_{i}<=10^{9}$ ) — the number written in the $i$ -th cell. The numbers are given for cells in order from $1$ to $n$ . Some of numbers $a_{i}$ can be equal.
输出格式
In the first line print the number $t$ — the least number of time units.
Each of the next $n$ lines should contain the direction of robot movement and the number of cells to move in that direction. After that movement the robot writes out the number from the cell in which it turns out. The direction and the number of cells should be printed in the form of +x in case of clockwise movement and -x in case of counterclockwise movement to $x$ cells ( $0<=x<=n-1$ ).
Note that the sum of absolute values of $x$ should be equal to $t$ .
Each of the next $n$ lines should contain the direction of robot movement and the number of cells to move in that direction. After that movement the robot writes out the number from the cell in which it turns out. The direction and the number of cells should be printed in the form of +x in case of clockwise movement and -x in case of counterclockwise movement to $x$ cells ( $0<=x<=n-1$ ).
Note that the sum of absolute values of $x$ should be equal to $t$ .
输入输出样例
输入 #1
9 1 0 1 2 2 2 1 0 1 1
输出 #1
12 +0 -3 -1 +2 +1 +2 +1 +1 +1
输入 #2
8 1 0 1 0 1 0 1 0 1
输出 #2
13 +0 +2 +2 +2 -1 +2 +2 +2
输入 #3
8 1 1 2 3 4 5 6 7 8
输出 #3
7 +0 +1 +1 +1 +1 +1 +1 +1
输入 #4
8 1 0 0 0 0 0 0 0 0
输出 #4
7 +0 +1 +1 +1 +1 +1 +1 +1
暂无题解
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted