Preparando MOJI

Second-Price Auction

1000ms 262144K

Description:

In this problem we consider a special type of an auction, which is called the second-price auction. As in regular auction n 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.

Input:

The first line of the input contains n (2 ≤ n ≤ 1000) — number of bidders. The second line contains n distinct integer numbers p1, p2, ... pn, separated by single spaces (1 ≤ pi ≤ 10000), where pi stands for the price offered by the i-th bidder.

Output:

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

Sample Input:

2
5 7

Sample Output:

2 5

Sample Input:

3
10 2 8

Sample Output:

1 8

Sample Input:

6
3 8 2 9 4 14

Sample Output:

6 9

Informação

Codeforces

Provedor Codeforces

Código CF386A

Tags

implementation

Submetido 0

BOUA! 0

Taxa de BOUA's 0%

Datas 09/05/2023 08:48:41

Relacionados

Nada ainda