CF612F.Simba on the Circle
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
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 ai . 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 ai ( −109<=ai<=109 ) — the number written in the i -th cell. The numbers are given for cells in order from 1 to n . Some of numbers ai 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