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 1 2 40 10 30 CS001 1 2 2 3 20 10 10 10 CS000000000000000001 0 CS000000000000000002 2 1 2 0
对于此题,我感觉不是很简单,思路是先将结构体建好,我把结构体的成员列出了四个,结构体如下:
typedef struct student
{
char ID[23];//学号
int sum;//解题的数目
int a[10];//解决的问题号
int sumgrade;//总成绩
}STU;
这样对于各项输入,并且统计每个人的总成绩,然后对结构体按照成绩进行排序,排序是要注意成绩相等时的排序,冒泡排序代码如下:
for(i=0;i<n-1;i++)
{
for(j=0;j<n-i-1;j++)
{//从到大小排序
if(stu[j].sumgrade<stu[j+1].sumgrade)
{
t=stu[j];
stu[j]=stu[j+1];
stu[j+1]=t;
}
else if(stu[j].sumgrade==stu[j+1].sumgrade&&strcmp(stu[j].ID,stu[j+1].ID)>0)
{
t=stu[j];
stu[j]=stu[j+1];
stu[j+1]=t;
}
}
}
完整代码如下:
#include<stdio.h>
#include<string.h>
typedef struct student
{
char ID[23];//学号
int sum;//解题的数目
int a[10];//解决的问题号
int sumgrade;
}STU;
int main()
{
int i,j,n,m,g;/*出考生人数n ( 0 < n
< 1000 )、考题数m ( 0 < m < = 10 )、分数线(正整数)g*/
STU stu[1005];//学生的信息
int b[10];//每一个问题所给的分数
int counter;//及格的人数
while(~scanf("%d",&n)&&n)
{
scanf("%d%d",&m,&g);
for(i=1;i<=m;i++)
scanf("%d",&b[i]);//输入第二行,每题的分数
counter=0;
for(i=0;i<n;i++)
{
stu[i].sumgrade=0;
scanf("%s%d",stu[i].ID,&stu[i].sum);
for(j=0;j<stu[i].sum;j++)
{
scanf("%d",&stu[i].a[j]);//ac的题目题号
stu[i].sumgrade+=b[stu[i].a[j]];
}
if(stu[i].sumgrade>=g)
counter++;
}
if(counter==0)
{
printf("0\n");
continue;
}
printf("%d\n",counter);
STU t;
for(i=0;i<n-1;i++)
{
for(j=0;j<n-i-1;j++)
{//从到大小排序
if(stu[j].sumgrade<stu[j+1].sumgrade)
{
t=stu[j];
stu[j]=stu[j+1];
stu[j+1]=t;
}
else if(stu[j].sumgrade==stu[j+1].sumgrade&&strcmp(stu[j].ID,stu[j+1].ID)>0)
{
t=stu[j];
stu[j]=stu[j+1];
stu[j+1]=t;
}
}
}
for(i=0;i<n;i++)
{
if(stu[i].sumgrade>=g)
{
printf("%s %d\n",stu[i].ID,stu[i].sumgrade);
}
}
}
return 0;
}