PAT 1015 德才论
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 德才论的更多相关文章
- PAT 1015 德才论 (25)(代码+思路)
1015 德才论 (25)(25 分)提问 宋代史学家司马光在<资治通鉴>中有一段著名的"德才论":"是故才德全尽谓之圣人,才德兼亡谓之愚人,德胜才谓之君子, ...
- PAT——1015. 德才论
宋代史学家司马光在<资治通鉴>中有一段著名的“德才论”:“是故才德全尽谓之圣人,才德兼亡谓之愚人,德胜才谓之君子,才胜德谓之小人.凡取人之术,苟不得圣人,君子而与之,与其得小人,不若得愚人 ...
- PAT 1015. 德才论 (25) JAVA
宋代史学家司马光在<资治通鉴>中有一段著名的"德才论":"是故才德全尽谓之圣人,才德兼亡谓之愚人,德胜才谓之君子,才胜德谓之小人.凡取人之术,苟不得圣人,君子 ...
- PAT 1015. 德才论 (25)
宋代史学家司马光在<资治通鉴>中有一段著名的"德才论":"是故才德全尽谓之圣人,才德兼亡谓之愚人,德胜才谓之君子,才胜德谓之小人.凡取人之术,苟不得圣人,君子 ...
- PAT(B)1015 德才论(C)
题目链接:1015 德才论 (25 point(s)) 分析 由题意可知,需要将考生按照分数进行一个分类(级),然后在每一级中按照分数排序.输入的时候将每个人的总分,等级和录取人数先算出来.然后按照自 ...
- PAT乙级 1015. 德才论 (25)
1015. 德才论 (25) 时间限制 200 ms 内存限制 65536 kB 代码长度限制 8000 B 判题程序 Standard 作者 CHEN, Li 宋代史学家司马光在<资治通鉴&g ...
- 【PAT】1015 德才论 (25)(25 分)
1015 德才论 (25)(25 分) 宋代史学家司马光在<资治通鉴>中有一段著名的“德才论”:“是故才德全尽谓之圣人,才德兼亡谓之愚人,德胜才谓之君子,才胜德谓之小人.凡取人之术,苟不得 ...
- pat 乙级 1015. 德才论 (25) c++
http://39.106.25.239 个人网站 欢迎访问 交流 1015. 德才论 (25) 时间限制 200 ms 内存限制 65536 kB 代码长度限制 8000 B 判题程序 Sta ...
- PAT乙级:1015 德才论 (25分)
1015 德才论 (25分) 宋代史学家司马光在<资治通鉴>中有一段著名的"德才论":"是故才德全尽谓之圣人,才德兼亡谓之愚人,德胜才谓之君子,才胜德谓之小人 ...
随机推荐
- boost::shared_ptr文档翻译
shared_ptr: 共享所有权 原文链接 描述 模版类 shared_ptr 存储动态构造对象的指针,通常是由C++ new语句完成的.这个对象指针在最后一个持有指针所有权的shared_ptr被 ...
- 2822: [AHOI2012]树屋阶梯
Time Limit: 1 Sec Memory Limit: 128 MBSubmit: 1161 Solved: 694[Submit][Status][Discuss] Descriptio ...
- SAP销售订单屏幕字段控制隐藏,必输等
1.T-CODE:shd0 创建变式 , 点击确认按钮后,SAP进入下一个屏幕,然后重复上面的操作,直到所有屏幕已完成设置. 如果后续屏幕不需要设置,可点击“退出并保存”按钮.保存后,进入下图所示页 ...
- ABAP术语-Accounting Document
Accounting Document 原文:http://www.cnblogs.com/qiangsheng/archive/2007/12/12/991731.html Accounting d ...
- mysql——查询重复数据,及删除重复数据只保留一条数据
查询 text 表中,user_name字段值重复的数据及重复次数 select user_name,count(*) as count from text 删除 text 表中,重复出现的数据只保留 ...
- VM虚拟机网卡LAN区段模拟内网使用教程
目录 1. 测试环境 2. 设置LAN区段并测试 2.1. 添加LAN区段 2.2. 在虚拟机中设置静态IP地址 2.3. 测试同一LAN区段的主机是否可以联通 2.4 ...
- 在ReactNative中使用Typescript
在ReactNative中使用Typescript 少侠放心,跟着我的这个步骤走,保你完美在RN项目中使用Typescript,废话不多说,走你 1.全局安装create-react-native-a ...
- mongodb的windows系统下安装
先下载安装包,地址有下面两个,按需选择吧. https://www.mongodb.com/download-center/v2/community https://www.mongodb.org/d ...
- hadoop搭建----centos免密码登录、修改hosts文件
分布式系统在传输数据时需要多台电脑免密码登录 如:A(192.168.227.12)想ssh免密码登录到B(192.168.227.12),需要把A的公钥文件(~/.ssh/id_rsa.pub)里内 ...
- 2018年第九届蓝桥杯【C++省赛B组】【第二题:明码】
参考:https://blog.csdn.net/qq_34202873/article/details/79784242 #include <bits/stdc++.h> using n ...