PAT 数据结构 08-排序3. Talent and Virtue (25)

来源:互联网 发布:linux 报文发送工具 编辑:程序博客网 时间:2024/06/06 05:22

About 900 years ago, a Chinese philosopher Sima Guang wrote a history book in which he talked about people's talent and virtue. According to his theory, a man being outstanding in both talent and virtue must be a "sage(圣人)"; being less excellent but with one's virtue outweighs talent can be called a "nobleman(君子)"; being good in neither is a "fool man(愚人)"; yet a fool man is better than a "small man(小人)" who prefers talent than virtue.

Now given the grades of talent and virtue of a group of people, you are supposed to rank them according to Sima Guang's theory.

Input Specification:

Each input file contains one test case. Each case first gives 3 positive integers in a line: N (<=105), the total number of people to be ranked; L (>=60), the lower bound of the qualified grades -- that is, only the ones whose grades of talent and virtue are both not below this line will be ranked; and H (<100), the higher line of qualification -- that is, those with both grades not below this line are considered as the "sages", and will be ranked in non-increasing order according to their total grades. Those with talent grades below H but virtue grades not are cosidered as the "noblemen", and are also ranked in non-increasing order according to their total grades, but they are listed after the "sages". Those with both grades below H, but with virtue not lower than talent are considered as the "fool men". They are ranked in the same way but after the "noblemen". The rest of people whose grades both pass the L line are ranked after the "fool men".

Then N lines follow, each gives the information of a person in the format:

ID_Number Virtue_Grade Talent_Grade
where ID_Number is an 8-digit number, and both grades are integers in [0, 100]. All the numbers are separated by a space.

Output Specification:

The first line of output must give M (<=N), the total number of people that are actually ranked. Then M lines follow, each gives the information of a person in the same format as the input, according to the ranking rules. If there is a tie of the total grade, they must be ranked with respect to their virtue grades in non-increasing order. If there is still a tie, then output in increasing order of their ID's.

Sample Input:
14 60 8010000001 64 9010000002 90 6010000011 85 8010000003 85 8010000004 80 8510000005 82 7710000006 83 7610000007 90 7810000008 75 7910000009 59 9010000010 88 4510000012 80 10010000013 90 9910000014 66 60
Sample Output:
1210000013 90 9910000012 80 10010000003 85 8010000011 85 8010000004 80 8510000007 90 7810000006 83 7610000005 82 7710000002 90 6010000014 66 6010000008 75 7910000001 64 90
司马光《德才论》,分组,排序。
/*2015.7.13*///使用STL排序缩短时间,sort(ivec.begin(),ivec.end(),comp);//其中comp为自定义的比较方法,若定义bool comp(int a,int b){return a>b;} 则降序排列//大数据时,将cin改为scanf,将cout改为printf可以缩短很多时间#include <iostream>#include <algorithm>#include <vector>using namespace std;struct man{int num;int de;int cai;};bool comp(const man &a,const man &b){int asum=a.de+a.cai;int bsum=b.de+b.cai;if(asum>bsum)//总分降序return true;else if(asum==bsum){if(a.de>b.de)//德分降序return true;else if(a.de==b.de&&a.num<b.num)//同分时学号升序return true;}return false;}int main(){int N,L,H;cin>>N>>L>>H;man x;int pass=N;vector<man> a1;vector<man> a2;vector<man> a3;vector<man> a4;while(N--){scanf("%d%d%d",&x.num,&x.de,&x.cai);if(x.de>=H&&x.cai>=H)a1.push_back(x);else if(x.de>=H&&x.cai>=L)a2.push_back(x);else if(x.de>=L&&x.cai>=L){if(x.de>=x.cai)a3.push_back(x);elsea4.push_back(x);}else pass--;}sort(a1.begin(),a1.end(),comp);sort(a2.begin(),a2.end(),comp);sort(a3.begin(),a3.end(),comp);sort(a4.begin(),a4.end(),comp);cout<<pass<<endl;vector<man>::iterator it;for(it=a1.begin();it!=a1.end();it++)printf("%d %d %d\n",it->num,it->de,it->cai);for(it=a2.begin();it!=a2.end();it++)printf("%d %d %d\n",it->num,it->de,it->cai);for(it=a3.begin();it!=a3.end();it++)printf("%d %d %d\n",it->num,it->de,it->cai);for(it=a4.begin();it!=a4.end();it++)printf("%d %d %d\n",it->num,it->de,it->cai);return 0;}

0 0
原创粉丝点击