CF454B.Little Pony and Sort by Shift
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
One day, Twilight Sparkle is interested in how to sort a sequence of integers a1,a2,...,an in non-decreasing order. Being a young unicorn, the only operation she can perform is a unit shift. That is, she can move the last element of the sequence to its beginning:
a1,a2,...,an→an,a1,a2,...,an−1. Help Twilight Sparkle to calculate: what is the minimum number of operations that she needs to sort the sequence?
输入格式
The first line contains an integer n (2<=n<=105) . The second line contains n integer numbers a1,a2,...,an (1<=ai<=105) .
输出格式
If it's impossible to sort the sequence output -1. Otherwise output the minimum number of operations Twilight Sparkle needs to sort it.
输入输出样例
输入#1
2 2 1
输出#1
1
输入#2
3 1 3 2
输出#2
-1
输入#3
2 1 2
输出#3
0