• [1047] Second-price Auction

  • 时间限制: 1000 ms 内存限制: 65535 K
  • 问题描述
  • Do you know second-price auction? It's very simple but famous. In a second-price auction, each potential buyer privately submits, perhaps in a sealed envelope or over a secure connection, his (or her) bid for the object to the auctioneer. After receiving all the bids, the auctioneer then awards the object to the bidder with the highest bid, and charges him (or her) the amount of the second-highest bid.

    Suppose you're the auctioneer and you have received all the bids, you should decide the winner and the amount of money he (or she) should pay.

  • 输入
  • There are multiple test cases. The first line of input contains an integer T(T <= 100), indicating the number of test cases. Then T test cases follow.

    Each test case contains two lines: The first line of each test case contains only one integer N, indicating the number of bidders. (2 <= N <= 100) The second line of each test case contains N integers separated by a space. The i-th integer Pi indicates the i-th bidder's bid. (0 < Pi <= 60000) You may assume that the highest bid is unique.

  • 输出
  • For each test case, output a line containing two integers x and y separated by a space. It indicates that the x-th bidder is the winner and the amount of money he (or she) should pay is y.




  • 样例输入
  • 2
    3
    3 2 1
    2
    4 9
    
    
  • 样例输出
  • 1 2
    2 4
    
  • 提示
  • 来源
  • 浙江省2009年竞赛第一题
    http://acm.zju.edu.cn/onlinejudge/showProblem.do?problemId=3365
  • 操作

显示春菜