测评会员优惠活动进行中 · 开通 VIP,有效期内测评不限次 VIP 优惠中 · 测评不限次 立即查看

A10070. Simba on the Circle

编程题 普及/提高-

题目描述

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.

输入格式

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.

输出格式

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$ .

输入输出样例

输入 #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
上一题 去做题 下一题