CF234B.Reading

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

Vasya is going to the Olympics in the city Ntown by train. The boy wants to read the textbook to prepare for the Olympics. He counted that he needed kk hours for this. He also found that the light in the train changes every hour. The light is measured on a scale from 0 to 100, where 0 is very dark, and 100 is very light.

Vasya has a train lighting schedule for all nn hours of the trip — nn numbers from 0 to 100 each (the light level in the first hour, the second hour and so on). During each of those hours he will either read the whole time, or not read at all. He wants to choose kk hours to read a book, not necessarily consecutive, so that the minimum level of light among the selected hours were maximum. Vasya is very excited before the upcoming contest, help him choose reading hours.

输入格式

The first input line contains two integers nn and kk ( 1<=n<=1000,1<=k<=n1<=n<=1000,1<=k<=n ) — the number of hours on the train and the number of hours to read, correspondingly. The second line contains nn space-separated integers aia_{i} ( 0<=ai<=1000<=a_{i}<=100 ), aia_{i} is the light level at the ii -th hour.

输出格式

In the first output line print the minimum light level Vasya will read at. In the second line print kk distinct space-separated integers b1,b2,...,bkb_{1},b_{2},...,b_{k} , — the indexes of hours Vasya will read at ( 1<=bi<=n1<=b_{i}<=n ). The hours are indexed starting from 1. If there are multiple optimal solutions, print any of them. Print the numbers bib_{i} in an arbitrary order.

输入输出样例

  • 输入#1

    5 3
    20 10 30 40 10
    

    输出#1

    20
    1 3 4 
    
  • 输入#2

    6 5
    90 20 35 40 60 100
    

    输出#2

    35
    1 3 4 5 6 
    

说明/提示

In the first sample Vasya should read at the first hour (light 2020 ), third hour (light 3030 ) and at the fourth hour (light 4040 ). The minimum light Vasya will have to read at is 2020 .

首页