https://pintia.cn/problem-sets/994805260223102976/problems/994805307551629312

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

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

输入格式:

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

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

输出格式:

输出第一行首先给出达到最低分数线的考生人数 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

时间复杂度:$O(N * logN)$

代码1:

#include <bits/stdc++.h>
using namespace std; const int maxn = 1e5 + 10;
int N, L, H;
int cnt = 0; struct Students {
char num[10];
int D;
int C;
int score;
int type;
}s[maxn]; bool cmp(const Students& a, const Students& b) {
if(a.type != b.type) return a.type < b.type;
if(a.score != b.score) return a.score > b.score;
if(a.D != b.D) return a.D > b.D;
return strcmp(a.num, b.num) < 0;
} void GetStudentType(int d, int c, int& type) {
if(d < L || c < L) {
type = 5;
} else {
if(d >= H && c >= H) type = 1;
else if(d >= H && c < H) type = 2;
else if(d < H && c < H && d >= c) type = 3;
else type = 4;
}
} int main() {
scanf("%d%d%d", &N, &L, &H);
for(int i = 1; i <= N; i ++) {
scanf("%s%d%d", s[i].num, &s[i].D, &s[i].C);
GetStudentType(s[i].D, s[i].C, s[i].type);
s[i].score = s[i].D + s[i].C;
if(s[i].type != 5) cnt ++;
} sort(s + 1, s + 1 + N, cmp);
printf("%d\n", cnt);
for(int i = 1; i <= N; i ++) {
if(s[i].type != 5)
printf("%s %d %d\n", s[i].num, s[i].D, s[i].C);
}
return 0;
}

死亡代码:

#include <bits/stdc++.h>
using namespace std; const int maxn = 1e5 + 10;
int N, L, H; struct Students {
char num[10];
int D;
int C;
int score;
}students[maxn]; struct Node1 {
char num11[10];
int D1;
int C1;
int score1;
}node1[maxn]; struct Node2 {
char num22[10];
int D2;
int C2;
int score2;
}node2[maxn]; struct Node3 {
char num33[10];
int D3;
int C3;
int score3;
}node3[maxn]; struct Node4 {
char num44[10];
int D4;
int C4;
int score4;
}node4[maxn]; bool cmp1(const Node1& a, const Node1& b) {
if(a.score1 != b.score1)
return a.score1 < b.score1;
else {
if(a.D1 != b.D1)
return a.D1 < b.D1;
else
return strcmp(a.num11, b.num11) > 0;
}
} bool cmp2(const Node2& c, const Node2& d) {
if(c.score2 != d.score2)
return c.score2 < d.score2;
else {
if(c.D2 != d.D2)
return c.D2 < d.D2;
else
return strcmp(c.num22, d.num22) > 0;
}
} bool cmp3(const Node3& e, const Node3& f) {
if(e.score3 != f.score3)
return e.score3 < f.score3;
else {
if(e.D3 != f.D3)
return e.D3 < f.D3;
else
return strcmp(e.num33, f.num33) > 0;
}
} bool cmp4(const Node4& aa, const Node4& ab) {
if(aa.score4 != ab.score4)
return aa.score4 < ab.score4;
else {
if(aa.D4 != ab.D4)
return aa.D4 < ab.D4;
else
return strcmp(aa.num44, ab.num44) > 0;
}
} int main() {
scanf("%d%d%d", &N, &L, &H);
for(int i = 1; i <= N; i ++) {
scanf("%s%d%d", students[i].num, &students[i].D, &students[i].C);
} int num1 = 0, num2 = 0, num3 = 0, num4 = 0;
for(int i = 1; i <= N; i ++) {
if(students[i].C < L || students[i].D < L) {
continue;
}
else {
if(students[i].C >= H && students[i].D >= H) {
num1 ++;
strcpy(node1[num1].num11, students[i].num);
node1[num1].C1 = students[i].C;
node1[num1].D1 = students[i].D;
node1[num1].score1 = students[i].C + students[i].D;
}
else if(students[i].D >= H && students[i].C < H) {
num2 ++;
strcpy(node2[num2].num22, students[i].num);
node2[num2].C2 = students[i].C;
node2[num2].D2 = students[i].D;
node2[num2].score2 = students[i].C + students[i].D;
}
else if(students[i].D < H && students[i].C < H && students[i].D >= students[i].C) {
num3 ++;
strcpy(node3[num3].num33, students[i].num);
node3[num3].C3 = students[i].C;
node3[num3].D3 = students[i].D;
node3[num3].score3 = students[i].C + students[i].D;
}
else {
num4 ++;
strcpy(node4[num4].num44, students[i].num);
node4[num4].C4 = students[i].C;
node4[num4].D4 = students[i].D;
node4[num4].score4 = students[i].C + students[i].D;
}
}
} sort(node1 + 1, node1 + num1 + 1, cmp1);
sort(node2 + 1, node2 + num2 + 1, cmp2);
sort(node3 + 1, node3 + num3 + 1, cmp3);
sort(node4 + 1, node4 + num4 + 1, cmp4); printf("%d\n", num1 + num2 + num3 + num4);
//printf("%d %d %d\n", num1, num2, num3);
for(int i = num1; i >= 1; i --)
printf("%s %d %d\n", node1[i].num11, node1[i].D1, node1[i].C1);
for(int i = num2; i >= 1; i --)
printf("%s %d %d\n", node2[i].num22, node2[i].D2, node2[i].C2);
for(int i = num3; i >= 1; i --)
printf("%s %d %d\n", node3[i].num33, node3[i].D3, node3[i].C3);
for(int i = num4; i >= 1; i --)
printf("%s %d %d\n", node4[i].num44, node4[i].D4, node4[i].C4);
return 0;
}

  

PAT 1015 德才论的更多相关文章

  1. PAT 1015 德才论 (25)(代码+思路)

    1015 德才论 (25)(25 分)提问 宋代史学家司马光在<资治通鉴>中有一段著名的"德才论":"是故才德全尽谓之圣人,才德兼亡谓之愚人,德胜才谓之君子, ...

  2. PAT——1015. 德才论

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

  3. PAT 1015. 德才论 (25) JAVA

    宋代史学家司马光在<资治通鉴>中有一段著名的"德才论":"是故才德全尽谓之圣人,才德兼亡谓之愚人,德胜才谓之君子,才胜德谓之小人.凡取人之术,苟不得圣人,君子 ...

  4. PAT 1015. 德才论 (25)

    宋代史学家司马光在<资治通鉴>中有一段著名的"德才论":"是故才德全尽谓之圣人,才德兼亡谓之愚人,德胜才谓之君子,才胜德谓之小人.凡取人之术,苟不得圣人,君子 ...

  5. PAT(B)1015 德才论(C)

    题目链接:1015 德才论 (25 point(s)) 分析 由题意可知,需要将考生按照分数进行一个分类(级),然后在每一级中按照分数排序.输入的时候将每个人的总分,等级和录取人数先算出来.然后按照自 ...

  6. PAT乙级 1015. 德才论 (25)

    1015. 德才论 (25) 时间限制 200 ms 内存限制 65536 kB 代码长度限制 8000 B 判题程序 Standard 作者 CHEN, Li 宋代史学家司马光在<资治通鉴&g ...

  7. 【PAT】1015 德才论 (25)(25 分)

    1015 德才论 (25)(25 分) 宋代史学家司马光在<资治通鉴>中有一段著名的“德才论”:“是故才德全尽谓之圣人,才德兼亡谓之愚人,德胜才谓之君子,才胜德谓之小人.凡取人之术,苟不得 ...

  8. pat 乙级 1015. 德才论 (25) c++

     http://39.106.25.239 个人网站 欢迎访问 交流 1015. 德才论 (25) 时间限制 200 ms 内存限制 65536 kB 代码长度限制 8000 B 判题程序 Sta ...

  9. PAT乙级:1015 德才论 (25分)

    1015 德才论 (25分) 宋代史学家司马光在<资治通鉴>中有一段著名的"德才论":"是故才德全尽谓之圣人,才德兼亡谓之愚人,德胜才谓之君子,才胜德谓之小人 ...

随机推荐

  1. Angularjs基础(一)

    (一) 模型——视图——控制器 端对端的解决方案,AngularJS 试图成为WEB 应用中的一种段对端的解决方案.AngylarJS 的出众 之处如下:数据绑定,基本模板标识符,表单验证,路由,深度 ...

  2. Ubuntu 18.04添加新网卡

    在Ubuntu 18.04 LTS上配置IP地址的方法与旧方法有很大不同.与以前的版本不同,Ubuntu 18.04使用Netplan(一种新的命令行网络配置实用程序)来配置IP地址. 在这种新方法中 ...

  3. linux系统基础之---RPM管理(基于centos7.4)

  4. Linux系统运维基础测试题

    1    Linux运维基础测试题(第一关) 通过这段时间学习Linux基础命令,为了检测自己对Linux基础命令掌握的情况,从网上整理13到测试题,并将其整理出来供大家参考学习. 1.1    习题 ...

  5. php中 include 、include_once、require、require_once4个语言结构的含义和区别

    对于不同页面中的相同代码部分,可以将其分离为单个文件 ,通过include引入文件. 可以提高代码的复用率 include 和include_once都有引入文件的作用 使用的语法是 :include ...

  6. HyperLedger Fabric 1.4 交易流程(6.3)

    区块链最主要的特性之一是去中心化,没有了中心机构的集中处理,为了达成数据的一致性,就需要网络中全民参与管理,并以某种方法达成共识,所以区块链的交易流程也就是共识的过程.       在Fabric中, ...

  7. struts2官方 中文教程 系列十:Form标签

    介绍 在本教程中,我们将探索其他Struts 2表单控件.在前面的教程中,我们介绍了如何使用Struts 2表单(处理表单.表单验证和消息资源文件),我们介绍了如何使用Struts 2 head, f ...

  8. 1698-Just a Hook 线段树(区间替换)

    Just a Hook Time Limit: 4000/2000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others)Total ...

  9. Mac OS下搭建Hadoop + Spark集群

    首先注意版本兼容问题!!!本文采用的是Scala 2.11.8 + Hadoop 2.7.5 + Spark 2.2.0 请在下载Spark时务必看清对应的Scala和Hadoop版本! 一.配置JD ...

  10. sshd 防止暴力破解