NOIP2006年普及组第一题。=>http://noi.openjudge.cn/ch0110/09/
明明想在学校中请一些同学一起做一项问卷调查,为了实验的客观性,他先用计算机生成了N个1到1000之间的随机整数(N≤100),对于其中重复的数字,只保留一个,把其余相同的数去掉,不同的数对应着不同的学生的学号。然后再把这些数从小到大排序,按照排好的顺序去找同学做调查。请你协助明明完成“去重”与“排序”的工作。
输入 | 输出 |
---|---|
10 20 40 32 67 40 20 89 300 400 15 |
8 15 20 32 40 67 89 300 400 |
#include <iostream> #include <algorithm> using namespace std; int n,num[105]; int main(){ cin >> n; for(int i=0;i<n;i++){ cin >> num[i]; } sort(num,num+n); int flag = num[0],cnt=1; for(int i=1;i<n;i++){ if(num[i]!=flag){ flag=num[i]; cnt ++; } } cout << cnt << endl; flag = num[0]; cout << flag; for(int i=1;i<n;i++){ if(num[i]!=flag){ flag=num[i]; cout << " " << flag; } } cout << endl; return 0; }
NOIP2007年普及组第一题。=>http://noi.openjudge.cn/ch0110/04/
某小学最近得到了一笔赞助,打算拿出其中一部分为学习成绩优秀的前5名学生发奖学金。期末,每个学生都有3门课的成绩:语文、数学、英语。先按总分从高到低排序,如果两个同学总分相同,再按语文成绩从高到低排序,如果两个同学总分和语文成绩都相同,那么规定学号小的同学排在前面,这样,每个学生的排序是唯一确定的。
任务:先根据输入的3门课的成绩计算总分,然后按上述规则排序,最后按排名顺序输出前五名名学生的学号和总分。注意,在前5名同学中,每个人的奖学金都不相同,因此,你必须严格按上述规则排序。例如,在某个正确答案中,如果前两行的输出数据(每行输出两个数:学号、总分) 是:
这两行数据的含义是:总分最高的两个同学的学号依次是7号、5号。这两名同学的总分都是 279 (总分等于输入的语文、数学、英语三科成绩之和) ,但学号为7的学生语文成绩更高一些。如果你的前两名的输出数据是:
则按输出错误处理,不能得分。
输入 | 输出 |
---|---|
6 90 67 80 87 66 91 78 89 91 88 99 77 67 89 64 78 89 98 |
6 265 4 264 3 258 2 244 1 237 |
输入 | 输出 |
---|---|
8 80 89 89 88 98 78 90 67 80 87 66 91 78 89 91 88 99 77 67 89 64 78 89 98 |
8 265 2 264 6 264 1 258 5 258 |
#include <iostream> #include <algorithm> using namespace std; struct Student{ int no; int chinese; int math; int english; int total; }; Student s[305]; int n; bool comp(Student a,Student b){ if(a.total>b.total) return true; else if(a.total == b.total) if(a.chinese>b.chinese) return true; else if(a.chinese == b.chinese) if(a.no<b.no) return true; return false; } int main(){ cin >> n; for(int i=1;i<=n;i++){ s[i].no=i; cin >> s[i].chinese >> s[i].math >> s[i].english; s[i].total = s[i].chinese+s[i].math+s[i].english; } sort(s+1,s+n+1,comp); for(int i=1;i<=5;i++){ cout << s[i].no << " " << s[i].total << endl; } return 0; }
NOIP2009年普及组第二题。=>http://noi.openjudge.cn/ch0110/05/
世博会志愿者的选拔工作正在A市如火如荼的进行。为了选拔最合适的人才,A市对所有报名的选手进行了笔试,笔试分数达到面试分数线的选手方可进入面试。面试分数线根据计划录取人数的150%划定,即如果计划录取m名志愿者,则面试分数线为排名第m*150%(向下取整)名的选手的分数,而最终进入面试的选手为笔试成绩不低于面试分数线的所有选手。
现在就请你编写程序划定面试分数线,并输出所有进入面试的选手的报名号和笔试成绩。
输入 | 输出 |
---|---|
6 3 1000 90 3239 88 2390 95 7231 84 1005 95 1001 88 |
88 5 1005 95 2390 95 1000 90 1001 88 3239 88 |
样例说明:m*150% = 3*150% = 4.5,向下取整后为4。保证4个人进入面试的分数线为88,但因为88有重分,所以所有成绩大于等于88的选手都可以进入面试,故最终有5个人进入面试。
#include <iostream> #include <algorithm> using namespace std; int n,m,line; struct Candidate{ int id; int score; }; Candidate candi[5005]; bool comp(Candidate a,Candidate b){ if(a.score>b.score) return true; else if(a.score == b.score) if(a.id < b.id) return true; return false; } int main(){ cin >> n >> m; for(int i=0;i<n;i++) cin >> candi[i].id >> candi[i].score; sort(candi,candi+n,comp); int p = m*1.5; int cnt = 1; for(int i=0;i<n;i++){ if(cnt<p){ cnt++; }else{ line = candi[i].score; break; } } cnt = 0; for(int i=0;i<n;i++){ if(candi[i].score>=line){ cnt++; }else{ break; } } cout << line << " " << cnt << endl; for(int i=0;i<cnt;i++) cout << candi[i].id << " " << candi[i].score << endl; return 0; }