标签:include 8 8 classname 输入 空格 个人 含义 排序 ber
某小学最近得到了一笔赞助,打算拿出其中一部分为学习成绩优秀的前5名学生发奖学金。期末,每个学生都有3门课的成绩:语文、数学、英语。先按总分从高到低排序,如果两个同学总分相同,再按语文成绩从高到低排序,如果两个同学总分和语文成绩都相同,那么规定学号小的同学排在前面,这样,每个学生的排序是唯一确定的。
任务:先根据输入的3门课的成绩计算总分,然后按上述规则排序,最后按排名顺序输出前五名名学生的学号和总分。注意,在前5名同学中,每个人的奖学金都不相同,因此,你必须严格按上述规则排序。例如,在某个正确答案中,如果前两行的输出数据(每行输出两个数:学号、总分) 是:
7 279
5 279
这两行数据的含义是:总分最高的两个同学的学号依次是7号、5号。这两名同学的总分都是 279 (总分等于输入的语文、数学、英语三科成绩之和) ,但学号为7的学生语文成绩更高一些。如果你的前两名的输出数据是:
5 279
7 279
则按输出错误处理,不能得分。
样例 #1: 6 90 67 80 87 66 91 78 89 91 88 99 77 67 89 64 78 89 98 样例 #2: 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
样例 #1: 6 265 4 264 3 258 2 244 1 237 样例 #2: 8 265 2 264 6 264 1 258 5 258
#include<cstdio>
#include<iostream>
#include<algorithm>
#include<cstring>
#include<string>
#include<cmath>
using namespace std;
struct stu{
int yv;
int shu;
int ying;
int zong;
int hao;
}stu1[1000001];
int main()
{
int n;
cin>>n;
for(int i=1;i<=n;i++)
{
cin>>stu1[i].yv>>stu1[i].shu>>stu1[i].ying;
stu1[i].zong=stu1[i].yv+stu1[i].shu+stu1[i].ying;
stu1[i].hao=i;
}
for(int i=1;i<=n-1;i++)
{
for(int j=i;j<=n;j++)
{
if(stu1[i].zong<stu1[j].zong)
{
swap(stu1[i],stu1[j]);
}
if(stu1[i].zong==stu1[j].zong)
{
if(stu1[i].yv<stu1[j].yv)
{
swap(stu1[i],stu1[j]);
}
}
}
}
for(int i=1;i<=5;i++)
{
cout<<stu1[i].hao<<" "<<stu1[i].zong;
cout<<endl;
}
return 0;
}
标签:include 8 8 classname 输入 空格 个人 含义 排序 ber
原文地址:http://www.cnblogs.com/lyqlyq/p/6596969.html