CF27C.Unordered Subsequence

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

The sequence is called ordered if it is non-decreasing or non-increasing. For example, sequnces [3, 1, 1, 0] and [1, 2, 3, 100] are ordered, but the sequence [1, 3, 3, 1] is not. You are given a sequence of numbers. You are to find it's shortest subsequence which is not ordered.

A subsequence is a sequence that can be derived from the given sequence by deleting zero or more elements without changing the order of the remaining elements.

输入格式

The first line of the input contains one integer nn ( 1<=n<=1051<=n<=10^{5} ). The second line contains nn space-separated integers — the given sequence. All numbers in this sequence do not exceed 10610^{6} by absolute value.

输出格式

If the given sequence does not contain any unordered subsequences, output 00 . Otherwise, output the length kk of the shortest such subsequence. Then output kk integers from the range [1.. nn ] — indexes of the elements of this subsequence. If there are several solutions, output any of them.

输入输出样例

  • 输入#1

    5
    67 499 600 42 23
    

    输出#1

    3
    1 3 5
    
  • 输入#2

    3
    1 2 3
    

    输出#2

    0
    
  • 输入#3

    3
    2 3 1
    

    输出#3

    3
    1 2 3
    
首页