1062. Talent and Virtue (25)

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

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:

  1. 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:

  1. 14 60 80
  2. 10000001 64 90
  3. 10000002 90 60
  4. 10000011 85 80
  5. 10000003 85 80
  6. 10000004 80 85
  7. 10000005 82 77
  8. 10000006 83 76
  9. 10000007 90 78
  10. 10000008 75 79
  11. 10000009 59 90
  12. 10000010 88 45
  13. 10000012 80 100
  14. 10000013 90 99
  15. 10000014 66 60

Sample Output:

  1. 12
  2. 10000013 90 99
  3. 10000012 80 100
  4. 10000003 85 80
  5. 10000011 85 80
  6. 10000004 80 85
  7. 10000007 90 78
  8. 10000006 83 76
  9. 10000005 82 77
  10. 10000002 90 60
  11. 10000014 66 60
  12. 10000008 75 79
  13. 10000001 64 90

提交代码

文字游戏,幸好题目的样例很典型。

  1. #include<cstdio>
  2. #include<stack>
  3. #include<cstring>
  4. #include<iostream>
  5. #include<stack>
  6. #include<set>
  7. #include<map>
  8. #include<algorithm>
  9. using namespace std;
  10. struct record{
  11. char id[];
  12. int VG,TG,r;
  13. record(){
  14. r=;
  15. }
  16. };
  17. bool cmp(record a,record b){
  18. if(a.r==b.r){
  19. if(a.VG+a.TG==b.VG+b.TG){
  20. if(a.VG==b.VG){
  21. return strcmp(a.id,b.id)<;
  22. }
  23. return a.VG>b.VG;
  24. }
  25. return a.VG+a.TG>b.VG+b.TG;
  26. }
  27. return a.r>b.r;
  28. }
  29. //Virtue_Grade Talent_Grade
  30. int main(){
  31. //freopen("D:\\INPUT.txt","r",stdin);
  32. int n,l,h;
  33. scanf("%d %d %d",&n,&l,&h);
  34. record *per=new record[n+];
  35. int i,count=,VG,TG,r=;
  36. char id[];
  37. for(i=;i<n;i++){
  38. scanf("%s %d %d",&id,&VG,&TG);
  39. if(VG>=l&&TG>=l){//有可能
  40. if(VG>=h&&TG>=h){
  41. per[count].r+=;
  42. }
  43. else if(VG>=h&&TG<h){//nobleman
  44. per[count].r+=;
  45. }
  46. else if(VG<h&&TG<h&&VG>=TG){//fool man
  47. per[count].r+=;
  48. }
  49. strcpy(per[count].id,id);
  50. per[count].VG=VG;
  51. per[count].TG=TG;
  52. count++;
  53. }
  54. }
  55. sort(per,per+count,cmp);
  56. printf("%d\n",count);
  57. for(i=;i<count;i++){
  58. printf("%s %d %d\n",per[i].id,per[i].VG,per[i].TG);
  59. }
  60. return ;
  61. }

pat1062. Talent and Virtue (25)的更多相关文章

  1. 1062. Talent and Virtue (25)【排序】——PAT (Advanced Level) Practise

    题目信息 1062. Talent and Virtue (25) 时间限制200 ms 内存限制65536 kB 代码长度限制16000 B About 900 years ago, a Chine ...

  2. PAT 甲级 1062 Talent and Virtue (25 分)(简单,结构体排序)

    1062 Talent and Virtue (25 分)   About 900 years ago, a Chinese philosopher Sima Guang wrote a histor ...

  3. 1062 Talent and Virtue (25)

    /* L (>=60), the lower bound of the qualified grades -- that is, only the ones whose grades of ta ...

  4. 1062 Talent and Virtue (25分)(水)

    About 900 years ago, a Chinese philosopher Sima Guang wrote a history book in which he talked about ...

  5. pat 1062. Talent and Virtue (25)

    难得的一次ac 题目意思直接,方法就是对virtue talent得分进行判断其归属类型,用0 1 2 3 4 表示 不合格 sage noblemen foolmen foolmen 再对序列进行排 ...

  6. PAT (Advanced Level) 1062. Talent and Virtue (25)

    简单排序.题意较长. #include<cstdio> #include<cstring> #include<cmath> #include<queue> ...

  7. PAT甲题题解-1062. Talent and Virtue (25)-排序水题

    水题,分组排序即可. #include <iostream> #include <cstdio> #include <algorithm> #include < ...

  8. 【PAT甲级】1062 Talent and Virtue (25 分)

    题意: 输入三个正整数N,L,H(N<=1E5,L>=60,H<100,H>L),分别代表人数,及格线和高水平线.接着输入N行数据,每行包括一个人的ID,道德数值和才能数值.一 ...

  9. PAT_A1062#Talent and Virtue

    Source: PAT A1062 Talent and Virtue (25 分) Description: About 900 years ago, a Chinese philosopher S ...

随机推荐

  1. Scala总结

    Scala总结 ===概述 scala是一门以Java虚拟机(JVM)为目标运行环境并将面向对象和函数式编程的最佳特性结合在一起的静态类型编程语言. scala是纯粹的面向对象的语言.java虽然是面 ...

  2. 移植完linux-3.4.2内核,启动系统后使用命令ifconfig -a查看网络配置,没有eth0

    问题: / # ifconfig / # ifconfig eth0  ifconfig: eth0: error fetching interface information: Device not ...

  3. linux命令-xz压缩

    xz gzip bzip2使用方法基本一样 压缩文件 [root@wangshaojun ~]# xz 111.txt[root@wangshaojun ~]# ls  //////111.txt文件 ...

  4. C# 处理Json

    下面是JSON对象转换为字符串 public static string ToJson(object obj) { try { JavaScriptSerializer serializer = ne ...

  5. 相关符号标点的英文(IOS学习)

    尖括号: angle bracket 方括号: square bracket 花括号: curly brace 圆括号: parentheses 逗号: comma 冒号: colon 逗号: sem ...

  6. hadoop-2.3.0-cdh5.1.0完全分布式集群配置及HA配置(待)

    一.安装前准备: 操作系统:CentOS 6.5 64位操作系统 环境:jdk1.7.0_45以上,本次采用jdk-7u55-linux-x64.tar.gz master01 10.10.2.57  ...

  7. Flask 入门(第二篇)

    1. 数据库 Flask 没有限定使用哪种数据库,不管是 SQL 还是 NoSQL.如果你不想自己编写负责的 SQL语句的话,你也可以使用 ORM,通过 SQLALchemy 即可实现. 1.1 SQ ...

  8. 【spring容器bean的作用域+spring容器是否是单例的一些问题】

    Spring容器中Bean的作用域 当通过Spring容器创建一个Bean实例时,不仅可以完成Bean实例的实例化,还可以为Bean指定特定的作用域.Spring支持如下5种作用域: singleto ...

  9. vue -- 打包资源正确引用及背景图引入

    一般情况下,通过webpack+vuecli默认打包的css.js等资源,路径都是绝对的. 但当部署到带有文件夹的项目中,这种绝对路径就会出现问题,因为把配置的static文件夹当成了根路径,那么要解 ...

  10. oracle分页计算公式

    //page是页数,rows是显示行数 int page=2; int rows=5; List<Articles> list=a.select(page*rows+1,(page-1)* ...