CF386A.Second-Price Auction

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

In this problem we consider a special type of an auction, which is called the second-price auction. As in regular auction nn bidders place a bid which is price a bidder ready to pay. The auction is closed, that is, each bidder secretly informs the organizer of the auction price he is willing to pay. After that, the auction winner is the participant who offered the highest price. However, he pay not the price he offers, but the highest price among the offers of other participants (hence the name: the second-price auction).

Write a program that reads prices offered by bidders and finds the winner and the price he will pay. Consider that all of the offered prices are different.

输入格式

The first line of the input contains nn ( 2<=n<=10002<=n<=1000 ) — number of bidders. The second line contains nn distinct integer numbers p1,p2,... pnp_{1},p_{2},...\ p_{n} , separated by single spaces ( 1<=pi<=100001<=p_{i}<=10000 ), where pip_{i} stands for the price offered by the ii -th bidder.

输出格式

The single output line should contain two integers: index of the winner and the price he will pay. Indices are 1-based.

输入输出样例

  • 输入#1

    2
    5 7
    

    输出#1

    2 5
    
  • 输入#2

    3
    10 2 8
    

    输出#2

    1 8
    
  • 输入#3

    6
    3 8 2 9 4 14
    

    输出#3

    6 9
    
首页