题意:

输入三个正整数N,L,H(N<=1E5,L>=60,H<100,H>L),分别代表人数,及格线和高水平线。接着输入N行数据,每行包括一个人的ID,道德数值和才能数值。一个人的道德和才能都不低于H时为圣人,道德不低于H才能不低于L时为贵族,道德和才能都不低于L且道德不低于才能时为愚者,道德和才能都不低于L且道德低于才能时为小人(圣人优先判断,圣人的才能可以高于道德)。分别在自己的所在的群体内排序,依照道德才能总和降序排序,第二优先为才能的数值降序,第三优先为id的升序。按照题意输出排序的总人数以及输出它们的信息。

AAAAAccepted code:

  1. #define HAVE_STRUCT_TIMESPEC
  2. #include<bits/stdc++.h>
  3. using namespace std;
  4. typedef struct student{
  5. string id;
  6. int v,t;
  7. int sum;
  8. };
  9. student sage[],noble[],fool[],small[];
  10. bool cmp(student a,student b){
  11. if(a.sum!=b.sum)
  12. return a.sum>b.sum;
  13. if(a.v!=b.v)
  14. return a.v>b.v;
  15. return a.id<b.id;
  16. }
  17. int main(){
  18. ios::sync_with_stdio(false);
  19. cin.tie(NULL);
  20. cout.tie(NULL);
  21. int n,l,h;
  22. cin>>n>>l>>h;
  23. int cnt1=,cnt2=,cnt3=,cnt4=;
  24. for(int i=;i<=n;++i){
  25. string id;
  26. cin>>id;
  27. int v,t;
  28. cin>>v>>t;
  29. if(v>=h&&t>=h){
  30. sage[++cnt1].id=id;
  31. sage[cnt1].v=v;
  32. sage[cnt1].t=t;
  33. sage[cnt1].sum=v+t;
  34. }
  35. else if(v>=h&&t>=l){
  36. noble[++cnt2].id=id;
  37. noble[cnt2].v=v;
  38. noble[cnt2].t=t;
  39. noble[cnt2].sum=v+t;
  40. }
  41. else if(v>=l&&t>=l&&v>=t){
  42. fool[++cnt3].id=id;
  43. fool[cnt3].v=v;
  44. fool[cnt3].t=t;
  45. fool[cnt3].sum=v+t;
  46. }
  47. else if(v>=l&&t>=l&&v<t){
  48. small[++cnt4].id=id;
  49. small[cnt4].v=v;
  50. small[cnt4].t=t;
  51. small[cnt4].sum=v+t;
  52. }
  53. }
  54. sort(sage+,sage++cnt1,cmp);
  55. sort(noble+,noble++cnt2,cmp);
  56. sort(fool+,fool++cnt3,cmp);
  57. sort(small+,small++cnt4,cmp);
  58. cout<<cnt1+cnt2+cnt3+cnt4<<"\n";
  59. for(int i=;i<=cnt1;++i)
  60. cout<<sage[i].id<<" "<<sage[i].v<<" "<<sage[i].t<<"\n";
  61. for(int i=;i<=cnt2;++i)
  62. cout<<noble[i].id<<" "<<noble[i].v<<" "<<noble[i].t<<"\n";
  63. for(int i=;i<=cnt3;++i)
  64. cout<<fool[i].id<<" "<<fool[i].v<<" "<<fool[i].t<<"\n";
  65. for(int i=;i<=cnt4;++i)
  66. cout<<small[i].id<<" "<<small[i].v<<" "<<small[i].t<<"\n";
  67. return ;
  68. }

【PAT甲级】1062 Talent and Virtue (25 分)的更多相关文章

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

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

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

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

  3. 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 ...

  4. PAT 甲级 1040 Longest Symmetric String (25 分)(字符串最长对称字串,遍历)

    1040 Longest Symmetric String (25 分)   Given a string, you are supposed to output the length of the ...

  5. 1062 Talent and Virtue (25)

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

  6. PAT 甲级 1083 List Grades (25 分)

    1083 List Grades (25 分) Given a list of N student records with name, ID and grade. You are supposed ...

  7. PAT甲级——1130 Infix Expression (25 分)

    1130 Infix Expression (25 分)(找规律.中序遍历) 我是先在CSDN上面发表的这篇文章https://blog.csdn.net/weixin_44385565/articl ...

  8. PAT 甲级 1074 Reversing Linked List (25 分)(链表部分逆置,结合使用双端队列和栈,其实使用vector更简单呐)

    1074 Reversing Linked List (25 分)   Given a constant K and a singly linked list L, you are supposed ...

  9. PAT 甲级 1086 Tree Traversals Again (25分)(先序中序链表建树,求后序)***重点复习

    1086 Tree Traversals Again (25分)   An inorder binary tree traversal can be implemented in a non-recu ...

随机推荐

  1. springboot中druid监控的配置(DruidConfiguration)

    当数据库连接池使用druid 时,我们进行一些简单的配置就能查看到sql监控,web监控,url监控等等. 以springboot为例,配置如下 import com.alibaba.druid.su ...

  2. Git-配置SSH公钥

    前言:Git是分布式的代码管理工具,远程的代码管理是基于SSH的,所以要使用远程的Git则需要SSH的配置. 以下操作都在git-bash命令行中进行. 查看所有配置项: git config --l ...

  3. win7安装mysql数据库

    1. 软件准备,以64位系统为例如果是32位的下载32位压缩包即可] https://dev.mysql.com/downloads/mysql/ 2.下载解压到本地,将解压路径的bin目录配置到环境 ...

  4. 第十篇 深入Python的dict和set(一)

  5. 计算几何-HPI

    This article is made by Jason-Cow.Welcome to reprint.But please post the article's address.   在线笛卡尔坐 ...

  6. CSS--box

    width is content width height is content height set margin and padding zero leads box to the same wi ...

  7. oracle-数据库被注入恶意攻击程序的案例恢复

    问题描述: Oracle数据库由于重启之后无法正常启动,tab$被清空(ORA-600 16703故障解析—tab$表被清空),导致数据库启动异常 ORA-600 16703报错 一.检测方法: 如下 ...

  8. 动态设置 layui select 为选中状态

    // 当前的select的id $('#type').val('你的value值'); //更新全部 layui.form.render();

  9. cpu io disk mem监控 python

    import psutil def cpu_information(): #scputimes(user=26.9, nice=0.1, system=50.27, idle=8551.89, iow ...

  10. STM32F103之I2C学习记录

    26.3.1  模式选择 该外设可以在以下四种模式之一 1)从机发送模式 2)从机接收模式 3)主机发送模式 4)主机接收模式 IIC协议时序 MSB:Most Significant Bit(最高有 ...