1059 C語言競賽 (setw(), setfill())
阿新 • • 發佈:2018-11-08
C 語言競賽是浙江大學計算機學院主持的一個歡樂的競賽。既然競賽主旨是為了好玩,頒獎規則也就制定得很滑稽:
- 0、冠軍將贏得一份“神祕大獎”(比如很巨大的一本學生研究論文集……)。
- 1、排名為素數的學生將贏得最好的獎品 —— 小黃人玩偶!
- 2、其他人將得到巧克力。
給定比賽的最終排名以及一系列參賽者的 ID,你要給出這些參賽者應該獲得的獎品。
輸入格式:
輸入第一行給出一個正整數 N(≤104),是參賽者人數。隨後 N 行給出最終排名,每行按排名順序給出一位參賽者的 ID(4 位數字組成)。接下來給出一個正整數 K 以及 K 個需要查詢的 ID。
輸出格式:
對每個要查詢的 ID,在一行中輸出 ID: 獎品
,其中獎品或者是 Mystery Award
(神祕大獎)、或者是 Minion
(小黃人)、或者是 Chocolate
(巧克力)。如果所查 ID 根本不在排名裡,列印 Are you kidding?
(耍我呢?)。如果該 ID 已經查過了(即獎品已經領過了),列印 ID: Checked
(不能多吃多佔)。
輸入樣例:
6
1111
6666
8888
1234
5555
0001
6
8888
0001
1111
2222
8888
2222
輸出樣例:
8888: Minion 0001: Chocolate 1111: Mystery Award 2222: Are you kidding? 8888: Checked 2222: Are you kidding?
分析:
求素數這裡用了篩選法,開闢一個stu陣列,儲存排名,為0則沒有該ID,如被檢查過,改為一個非ID的值。也是很簡單的一個題,就是通過率略低。
#include<iostream> #include<iomanip> using namespace std; int stu[10000] = {0}, prime[10001]; //篩選素數 void SelectPrime(){ for(int i = 0; i < 10001; i++) prime[i] = 1; for(int i = 2; i * i <= 10000; i++){ if(prime[i] == 1){ int j = i * i; while(j <= 10000){ prime[j] = 0; j += i; } } } } int main(){ int N, temp; SelectPrime(); cin >> N; //Winner is marked as 1, and the others are marked as 2. for(int i = 0; i < N; i++){ cin >> temp; stu[temp] = i + 1; } //Check 3 means this ID has been checked. cin >> N; for(int i = 0; i < N; i++){ cin >> temp; if(stu[temp] == 1){ cout << setw(4) << setfill('0') << temp << ": Mystery Award" << endl; stu[temp] = 10001; }else if(stu[temp] >= 2 && stu[temp] <= 10000){ if(prime[stu[temp]] == 1){ cout << setw(4) << setfill('0') << temp << ": Minion" << endl; stu[temp] = 10001; }else{ cout << setw(4) << setfill('0') << temp << ": Chocolate" << endl; stu[temp] = 10001; } }else if(stu[temp] == 10001){ cout << setw(4) << setfill('0') << temp << ": Checked" << endl; }else if(stu[temp] == 0){ cout << setw(4) << setfill('0') << temp << ": Are you kidding?" << endl; } } }