当前位置: 代码迷 >> 综合 >> 1015. 德才论 (25) PAT
  详细解决方案

1015. 德才论 (25) PAT

热度:117   发布时间:2023-09-24 06:09:33.0

1015. 德才论 (25)

时间限制
200 ms
内存限制
65536 kB
代码长度限制
8000 B
判题程序
Standard
作者
CHEN, Li

宋代史学家司马光在《资治通鉴》中有一段著名的“德才论”:“是故才德全尽谓之圣人,才德兼亡谓之愚人,德胜才谓之君子,才胜德谓之小人。凡取人之术,苟不得圣人,君子而与之,与其得小人,不若得愚人。”

现给出一批考生的德才分数,请根据司马光的理论给出录取排名。

输入格式:

输入第1行给出3个正整数,分别为:N(<=105),即考生总数;L(>=60),为录取最低分数线,即德分和才分均不低于L的考生才有资格被考虑录取;H(<100),为优先录取线——德分和才分均不低于此线的被定义为“才德全尽”,此类考生按德才总分从高到低排序;才分不到但德分到线的一类考生属于“德胜才”,也按总分排序,但排在第一类考生之后;德才分均低于H,但是德分不低于才分的考生属于“才德兼亡”但尚有“德胜才”者,按总分排序,但排在第二类考生之后;其他达到最低线L的考生也按总分排序,但排在第三类考生之后。

随后N行,每行给出一位考生的信息,包括:准考证号、德分、才分,其中准考证号为8位整数,德才分为区间[0, 100]内的整数。数字间以空格分隔。

输出格式:

输出第1行首先给出达到最低分数线的考生人数M,随后M行,每行按照输入格式输出一位考生的信息,考生按输入中说明的规则从高到低排序。当某类考生中有多人总分相同时,按其德分降序排列;若德分也并列,则按准考证号的升序输出。

输入样例:
14 60 80
10000001 64 90
10000002 90 60
10000011 85 80
10000003 85 80
10000004 80 85
10000005 82 77
10000006 83 76
10000007 90 78
10000008 75 79
10000009 59 90
10000010 88 45
10000012 80 100
10000013 90 99
10000014 66 60
输出样例:
12
10000013 90 99
10000012 80 100
10000003 85 80
10000011 85 80
10000004 80 85
10000007 90 78
10000006 83 76
10000005 82 77
10000002 90 60
10000014 66 60
10000008 75 79
10000001 64 90
//哈 运行超时 
//用vector可能可以解决问题  
//百度出来发现,最开始存储的时候,就把学生分了类别存储 
#include <cstdio>
#include <iostream>
#include <string>
#include <algorithm>
#define MAX 100000
using namespace std;int n,l,h;struct stu{string num;int a,b;
}stu[MAX];int judge(struct stu &x){//判断学生是哪一类 if(x.a>=h&&x.b>=h){//德分 才分都大于等于优先录取线 return 1;}else if(x.a>=h&&x.b<h){//才分不到 h 线,但 德分到 h 线 return 2;}else if(x.a<h&&x.b<h&&x.a>=x.b){//德分 才分都不到 h 线 但是德分大于等于才分 return 3;}else{return 4;}} bool cmp(struct stu &j,struct stu &k){if(judge(j)!=judge(k)){//如果不是同类学生 return judge(j)<judge(k); }else{  //如果是同类学生, 首先按总分降序排序,若总分相同按德分降序排序,若德分相同按学号升序排序 if((j.a+j.b)!=(k.a+k.b)){return (j.a+j.b)>(k.a+k.b);}else if(j.a!=k.a){return j.a>k.a;}else{return j.num<k.num;}}
}int main(){int size=0;scanf("%d%d%d",&n,&l,&h);string numm;int aa,bb;for(int i=0;i<n;i++){cin>>numm>>aa>>bb;if(aa>=l&&bb>=l){//只存储了德分 才分达到最低录取线的学生 stu[size].num=numm;stu[size].a=aa;stu[size].b=bb;size++;}}printf("%d\n",size);sort(stu,stu+size,cmp);for(int i=0;i<size;i++){cout<<stu[i].num<<" "<<stu[i].a<<" "<<stu[i].b<<endl;}return 0;
} 

上面是有两个测试样例运行超时的代码。用数组暴力存储的方式是行不通的。

下面是AC代码。在AC之前,我用了vector 还是没用解决运行超时的问题。

1.学生学号最初用的string存储,可想而知,string的读写速度肯定比int慢。

2.输出最初用的cout输出流输出,众所周知cout比printf慢。

#include <cstdio>
#include <iostream>
#include <cstring>
#include <vector>
#include <algorithm>
using namespace std;struct student{int num;int a,b;bool operator<(const struct student &temp)const{if((a+b)!=(temp.a+temp.b)){return (a+b)>(temp.a+temp.b);}else if(a!=temp.a){return a>temp.a;}else{return num<temp.num;}}
};int main(){int n,l,h;int count=0;vector<student> v1,v2,v3,v4;scanf("%d%d%d",&n,&l,&h);struct student stu;for(int i=0;i<n;i++){//进行类别判断,分别存储学生,并且记录学生人数 cin>>stu.num>>stu.a>>stu.b;if(stu.a>=l&&stu.b>=l){count++;if(stu.a>=h&&stu.b>=h){v1.push_back(stu);}else if(stu.a>=h){v2.push_back(stu);}else if(stu.a>=stu.b){v3.push_back(stu);}else{v4.push_back(stu);}} } sort(v1.begin(),v1.end());sort(v2.begin(),v2.end());sort(v3.begin(),v3.end());sort(v4.begin(),v4.end());printf("%d\n",count);vector<student>::iterator iter;for(iter=v1.begin();iter!=v1.end();iter++){printf("%d %d %d\n",iter->num,iter->a,iter->b);//cout<<iter->num<<" "<<iter->a<<" "<<iter->b<<endl;}for(iter=v2.begin();iter!=v2.end();iter++){printf("%d %d %d\n",iter->num,iter->a,iter->b);//cout<<iter->num<<" "<<iter->a<<" "<<iter->b<<endl;}for(iter=v3.begin();iter!=v3.end();iter++){printf("%d %d %d\n",iter->num,iter->a,iter->b);//cout<<iter->num<<" "<<iter->a<<" "<<iter->b<<endl;}for(iter=v4.begin();iter!=v4.end();iter++){printf("%d %d %d\n",iter->num,iter->a,iter->b);//cout<<iter->num<<" "<<iter->a<<" "<<iter->b<<endl;}return 0;
}