您现在的位置是:首页 >技术交流 >1059 C语言竞赛网站首页技术交流
1059 C语言竞赛
简介1059 C语言竞赛
1059 C语言竞赛
C 语言竞赛是浙江大学计算机学院主持的一个欢乐的竞赛。既然竞赛主旨是为了好玩,颁奖规则也就制定得很滑稽:
- 冠军将赢得一份“神秘大奖”(比如很巨大的一本学生研究论文集……)。
- 排名为素数的学生将赢得最好的奖品 —— 小黄人玩偶!
- 其他人将得到巧克力。
给定比赛的最终排名以及一系列参赛者的 ID,你要给出这些参赛者应该获得的奖品。
输入格式:
输入第一行给出一个正整数 N(≤10的4次方),是参赛者人数。随后 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?
代码长度限制 16 KB
时间限制 200 ms
内存限制 64 MB
/*
1059 C语言竞赛
https://pintia.cn/problem-sets/994805260223102976/exam/problems/994805269828059136
*/
#include <iostream>
#include <vector>
using namespace std;
struct Player
{
int m_rate;//排名
string m_id;
bool m_checked=false;//是否发过奖品,默认没发过
Player(int rate,string id,bool checked):m_rate(rate),m_id(id),m_checked(checked){}
};
bool isPrime(int x)
{
for(int i=2;i<x;i++)
if(x%i==0)
return false;
return true;
}
int main()
{
int num;
cin>>num;
vector<Player> players;
for(int i=0;i<num;i++)//录入信息
{
string tempId;
cin>>tempId;
players.push_back(Player(i+1,tempId,false));
}
cin>>num;
for(int i=0;i<num;i++)
{
string tempId;
bool findFlag=false;
cin>>tempId;
for(int i=0;i<players.size();i++)
if(players[i].m_id==tempId)//找到了这个编号
{
findFlag=true;
if(!players[i].m_checked)//如果未检查过
{
if(players[i].m_rate==1)//是冠军
cout<<tempId<<": Mystery Award
";
else if(isPrime(players[i].m_rate))//是素数
cout<<tempId<<": Minion
";
else//其他
cout<<tempId<<": Chocolate
";
players[i].m_checked=true;
}else
cout<<tempId<<": Checked
";
}
if(!findFlag)
cout<<tempId<<": Are you kidding?
";
}
}
风语者!平时喜欢研究各种技术,目前在从事后端开发工作,热爱生活、热爱工作。