题目描述
今天浙大研究生复试的上机考试跟传统笔试的打分规则相似,总共有n道题,每道题有对应分值,最后计算总成绩。现给定录取分数线,请你写程序找出最后通过分数线的考生,并将他们的成绩按降序打印。
输入
第1行给出考生人数N ( 1<= N<=100 )、考题数M (1<=M<=10 )、分数线(正整数)G;
第2行排序给出第1题至第M题的正整数分值;
以下N行,每行给出一名考生的准考证号(长度不超过20的字符串)、该生解决的题目总数m、以及这m道题的题号
(题目号由1到M)。
输出
首先在第1行输出不低于分数线的考生人数n,随后n行按分数从高到低输出上线考生的考号与分数,其间用1空格分隔。若有多名考生分数相同,则按他们考号的升序输出。
样例输入 Copy
4 5 25
10 10 12 13 15
CS004 3 5 1 3
CS003 5 2 4 1 3 5
CS002 2 1 2
CS001 3 2 3 5
样例输出 Copy
3
CS003 60
CS001 37
CS004 37
来源/分类
#include
#include
#include
typedef struct student{
char id[21];
int m;
int sum;//总分
}student;
int cmp(student a,student b){
if(a.sum<b.sum) return 1;
if(a.sum==b.sum&&strcmp(a.id,b.id)>0) return 1;
return 0;
}
int main(){
int N,M,G;
int s[10],g,count=0;
student stu[100],t;
scanf("%d %d %d",&N,&M,&G);
for(int i=0;i<M;i++){
scanf("%d",&s[i]);
}
for(int i=0;i<N;i++){
scanf("%s %d",stu[i].id,&stu[i].m);
stu[i].sum=0;//初始化为0
for(int j=0;j<stu[i].m;j++){
scanf("%d",&g);//输入题号,题号要减1
stu[i].sum+=s[g-1];
}
if(stu[i].sum>=G) count++;
}
//排序
for(int i=0;i<N-1;i++){
for(int j=i+1;j<N;j++){
if(cmp(stu[i],stu[j])){
t=stu[i];
stu[i]=stu[j];
stu[j]=t;
}
}
}
printf("%d\n",count);
for(int i=0;i<N;i++){
if(stu[i].sum>=G) printf("%s %d\n",stu[i].id,stu[i].sum);
}
return 0;
}