CF56B.Spoilt Permutation

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

Vasya collects coins: he has exactly one coin for every year from 11 to nn . Naturally, Vasya keeps all the coins in his collection in the order in which they were released. Once Vasya's younger brother made a change — he took all the coins whose release year dated from ll to rr inclusively and put them in the reverse order. That is, he took a certain segment [l,r][l,r] and reversed it. At that the segment's endpoints did not coincide. For example, if n=8n=8 , then initially Vasya's coins were kept in the order 1 2 3 4 5 6 7 8. If Vasya's younger brother chose the segment [2,6][2,6] , then after the reversal the coin order will change to 1 6 5 4 3 2 7 8. Vasya suspects that someone else could have spoilt the permutation after his brother. Help him to find that out. Check if the given permutation can be obtained from the permutation 1 2 ... nn using exactly one segment reversal. If it is possible, find the segment itself.

输入格式

The first line contains an integer nn ( 1<=n<=10001<=n<=1000 ) which is the number of coins in Vasya's collection. The second line contains space-separated nn integers which are the spoilt sequence of coins. It is guaranteed that the given sequence is a permutation, i.e. it contains only integers from 11 to nn , and every number is used exactly 1 time.

输出格式

If it is impossible to obtain the given permutation from the original one in exactly one action, print 0 0. Otherwise, print two numbers ll rr ( 1<=l<r<=n ) which are the endpoints of the segment that needs to be reversed to obtain from permutation 1 2 ... nn the given one.

输入输出样例

  • 输入#1

    8
    1 6 5 4 3 2 7 8
    

    输出#1

    2 6
    
  • 输入#2

    4
    2 3 4 1
    

    输出#2

    0 0
    
  • 输入#3

    4
    1 2 3 4
    

    输出#3

    0 0
    
首页