1639 - 排名
今天的上机考试虽然有实时的Ranklist,但上面的排名只是根据完成的题数排序,没有考虑每题的分值,所以并不是最后的排名。给定录取分数线,请你写程序找出最后通过分数线的考生,并将他们的成绩按降序打印。
Input
测试输入包含若干场考试的信息。每场考试信息的第1行给出考生人数N ( 0 < N < 1000 )、考题数M ( 0 < M < = 10 )、分数线(正整数)G;第2行排序给出第1题至第M题的正整数分值;以下N行,每行给出一名考生的准考证号(长度不超过20的字符串)、该生解决的题目总数m、以及这m道题的题号(题目号由1到M)。
Output
对每场考试,首先在第1行输出不低于分数线的考生人数n,随后n行按分数从高到低输出上线考生的考号与分数,其间用1空格分隔。若有多名考生分数相同,则按他们考号的升序输出。
Examples
Input
3 5 32 17 10 12 9 15 CS22003 5 1 2 3 4 5 CS22004 3 5 1 3 CS22002 2 1 5 0
Output
3 CS22003 63 CS22004 44 CS22002 32
Hint
这题比较简单,计算好每个人的分数后按题目要求排序即可。
Solution C
#include<stdio.h> #include<string.h> typedef struct Record { char no[20]; int source; }Record; int main() { int N,M,G; int source[20]; Record student[1000]; scanf("%d",&N); while(N!=0) { scanf("%d%d",&M,&G); int i=0; int count=0; while(i<M) { scanf("%d",&source[i]); i++; } for(i=0;i<N;i++) { char ch[20]; scanf("%s",ch); int n; scanf("%d",&n); int j=0; int grade; int sum=0; while(j<n) { scanf("%d",&grade); int nn=grade; sum+=source[nn-1]; j++; } if(sum>=G) { for(j=count-1;j>=0;j--) { if(student[j].source<sum) { strcpy(student[j+1].no,student[j].no); student[j+1].source=student[j].source; } else { break; } } strcpy(student[j+1].no,ch); student[j+1].source=sum; count++; } } if(count>0) printf("%d\n",count); for(i=0;i<count;i++) { printf("%s %d\n",student[i].no,student[i].source); } scanf("%d",&N); } }
Solution C++
#include <cstdio> #include <string> #include <algorithm> #include <vector> using namespace std; struct Student { int score; string id; }; Student a[1005]; bool cmp(const Student & l, const Student & r) { if (l.score != r.score) return l.score > r.score; return l.id < r.id; } int main() { int n, m, g; int score[13]; while (EOF != scanf("%d", &n) && n > 0) { scanf("%d %d", &m, &g); for (int i = 1; i <= m; ++i) scanf("%d", &score[i]); for (int i = 0; i < n; ++i) { char str[30]; scanf("%s", str); a[i].id = string(str); int m, x, sum = 0; scanf("%d", &m); while (m--) { scanf("%d", &x); sum += score[x]; } a[i].score = sum; } sort(a, a + n, cmp); vector < Student > ans; for (int i = 0; i < n; ++i) if (a[i].score >= g) ans.push_back(a[i]); printf("%u\n", ans.size()); for (vector < Student >::iterator it = ans.begin(); it != ans.end(); ++it) printf("%s %d\n", it->id.c_str(), it->score); } return 0; }
Hint
这题比较简单,计算好每个人的分数后按题目要求排序即可。