回 帖 发 新 帖 刷新版面

主题:求助,谁帮我看看这个题目怎么做?

Problem A: Auction

Recently the auction house has introduced a new type of auction, the lowest price auction. In this new system, people compete for the lowest bid price, as opposed to what they did in the past. What an amazing thing! Now you could buy cool stuff with one penny. Your task is to write the software to automate this auction system.

First the auctioneer puts an upper limit on bid price for each item. Only positive price less than or equal to this price limit is a valid bid. For example, if the price limit is 100, then 1 to 100, inclusive, are all valid bid prices. Bidder can not put more than one bid for the same price on a same item. However they can put many bids on a same item, as long as the prices are different. After all bids are set, the auctioneer chooses the winner according to the following rules:

1.    If any valid price comes from only one bidder, the price is a "unique bid". If there are unique bids, then the unique bid with the lowest price wins. This price is the winning price and the only bidder is the winning bidder.

2.    If there are no unique bids, then the price with fewest bids is the winning bid. If there are more than one price which has the same lowest bid count, choose the lowest one. This price is the winning price. The bidder who puts this bid first is the winning bidder.

Given the price limit and all the bids that happen in order, you will determine the winning bidder and the winning price.
Input Description

Standard input will contain multiple test cases. The first line of the input is a single integer T (1 <= T <= 10) which is the number of test cases. T test cases follow, each preceded by a single blank line.

The first line of each test case contains two integers: U (1 <= U <= 10,000), the price upper limit and M (1 <= M <= 100,000), the total number of bids. M lines follow, each of which presents a single bid. The bid contains the bidder's name (consecutive non-whitespace characters) and the price P (1 <= P <= U), separated with a single space. All bids in the input are guaranteed to be valid ones.

Output Description

Results should be directed to standard output. Start each case with "Case #:" on a single line, where # is the case number starting from 1. Two consecutive cases should be separated by a single blank line. No blank line should be produced after the last test case.

For each test case, print the sentence "The winner is W." on the first line, and "The price is P." on the second. Replace W and P with the winning bidder’s name and the winning price.

Sample Input

2

3 3
Alice 1
Bob 2
Carl 3

3 6
Alice 1
Alice 2
Alice 3
Bob 1
Bob 3
Carl 3

Sample Output

Case 1:
The winner is Alice.
The price is 1.

Case 2:
The winner is Alice.
The price is 2.

谢谢大家了~我真的不知道怎么才能写出来......
实在对于我来说有点难,但是老师非要写....
大家就帮我想想吧~谢谢咯

回复列表 (共2个回复)

沙发

靠,你美国人?!?!?!

板凳

不是....题目就是这样的...
问题A∶ 拍卖 

最近拍卖行已经介绍一新型拍卖,最低的价格拍卖。  在这个新系统里,人们为最低的递价竞争,与他们过去做的相反。  多么惊人的事情!  现下你能用一便士买极好的材料。  你的任务是写软体使这个拍卖系统自动化。 

首先拍卖人为每样东西把一个上限放在递价上。  只正的价格小於或等於这限价是一次有效的投标。  例如,如果限价是100, 然后1到100,包括,全部是有效的递价。  投标商不能为相同的价格放不止一次投标在一个相同的项目上。  无论怎样他们能把很多投标放在一个相同的项目上,只要价格不同。  终究投标被确定,拍卖人根据下列规章选择获胜者∶ 

1.如果有效价格只来自一个投标商的任何,那些价格一" 独特的投标" .  如果有独特的投标, 然后有最低的价格的独特的投标赢。  这个价格是获胜的价格和唯一的投标商是获胜的投标商。 

2.如果没有独特的投标, 然后有最少的投标的价格是中标。  如果有超过不二价,让相同的最低的投标数,选择最低的。  这个价格是获胜的价格。  首先放这次投标的投标商是获胜的投标商。 

假使有限价和妥善发生的全部投标,你将确定获胜的投标商和获胜的价格。 

大概翻译一下就是这样

我来回复

您尚未登录,请登录后再回复。点此登录或注册