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,...,ana_{1},a_{2},...,a_{n} 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,...,anan,a1,a2,...,an1.a_{1},a_{2},...,a_{n}→a_{n},a_{1},a_{2},...,a_{n-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 nn (2<=n<=105)(2<=n<=10^{5}) . The second line contains nn integer numbers a1,a2,...,ana_{1},a_{2},...,a_{n} (1<=ai<=105)(1<=a_{i}<=10^{5}) .

输出格式

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
    
首页