日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問(wèn) 生活随笔!

生活随笔

當(dāng)前位置: 首頁(yè) > 编程资源 > 编程问答 >内容正文

编程问答

AMAZING AUCTION (第三届省赛)

發(fā)布時(shí)間:2025/4/14 编程问答 38 豆豆
生活随笔 收集整理的這篇文章主要介紹了 AMAZING AUCTION (第三届省赛) 小編覺(jué)得挺不錯(cuò)的,現(xiàn)在分享給大家,幫大家做個(gè)參考.

AMAZING AUCTION

?

(這道麼。。。。英文題,,硬傷, 也是隊(duì)友寫(xiě)的;題意是 從數(shù)據(jù)中找到與眾不同的數(shù)據(jù), 且該價(jià)錢(qián)是最低的(也就是競(jìng)標(biāo)) ?代碼應(yīng)該不難);

?

?

題目描述

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.

?

輸入

The first line contains two integers: U (1 <= U <= 1000), the price upper limit and M (1 <= M <= 100), 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<=5) and the price P (1 <= P <= U), separated with a single space. All bids in the input are guaranteed to be valid ones.

?

輸出

Print the sentence "The winner is W" on the first line, and "The price is P" on the second.

?

樣例輸入

30 7 Mary 10 Mary 20 Mary 30 Bob 10 Bob 30 Carl 30 Alice 23

樣例輸出

The winner is Mary The price is 20







1 #include<stdio.h> 2 #include<stdlib.h> 3 #include<string.h> 4 #include<ctype.h> 5 #define N 1010 6 #define max(a, b)(a > b ? a : b) 7 8 typedef struct node 9 { 10 char s[10]; 11 int p; 12 } node; 13 14 int cmp(const void *a, const void *b) 15 { 16 node *s1 = (node *)a, *s2 = (node *)b; 17 return s1->p - s2->p; 18 } 19 int main() 20 { 21 node node[N]; 22 int m, n, i, x, a[N]; 23 char str[N]; 24 while(scanf("%d%d", &m, &n) != EOF) 25 { 26 memset(a, 0, sizeof(a)); 27 for(i = 0 ; i < n ; i++) 28 { 29 scanf("%s%d", node[i].s, &node[i].p); 30 a[node[i].p]++; 31 } 32 qsort(node, n, sizeof(node[0]), cmp); 33 for(i = 0 ; i < n ; i++) 34 { 35 if(node[i].p <= m && a[node[i].p] == 1) 36 { 37 strcpy(str, node[i].s); 38 x = node[i].p; 39 break; 40 } 41 } 42 printf("The winner is %s\nThe price is %d\n", str, x); 43 } 44 return 0; 45 }

?

轉(zhuǎn)載于:https://www.cnblogs.com/yishilin/p/4476641.html

總結(jié)

以上是生活随笔為你收集整理的AMAZING AUCTION (第三届省赛)的全部?jī)?nèi)容,希望文章能夠幫你解決所遇到的問(wèn)題。

如果覺(jué)得生活随笔網(wǎng)站內(nèi)容還不錯(cuò),歡迎將生活随笔推薦給好友。