PAT Basic Level 1028 人口普查(C++实现)
2021/9/22 17:11:56
本文主要是介绍PAT Basic Level 1028 人口普查(C++实现),对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
某城镇进行人口普查,得到了全体居民的生日。现请你写个程序,找出镇上最年长和最年轻的人。
这里确保每个输入的日期都是合法的,但不一定是合理的——假设已知镇上没有超过 200 岁的老人,而今天是 2014 年 9 月 6 日,所以超过 200 岁的生日和未出生的生日都是不合理的,应该被过滤掉。
输入格式:
输入在第一行给出正整数 N,取值在(0,105];随后 N 行,每行给出 1 个人的姓名(由不超过 5 个英文字母组成的字符串)、以及按 yyyy/mm/dd
(即年/月/日)格式给出的生日。题目保证最年长和最年轻的人没有并列。
输出格式:
在一行中顺序输出有效生日的个数、最年长人和最年轻人的姓名,其间以空格分隔。
输入样例:
5 John 2001/05/12 Tom 1814/09/06 Ann 2121/01/30 James 1814/09/05 Steve 1967/11/20
输出样例:
3 Tom John
思路
统计0-200岁的人数
设置变量存储最年长的和最年轻的
注意一定不要给最年长的和最年轻的赋初值(初值可能不合理的)!!
没有合理的日期,只输出0
。
AC代码
#include<iostream> using namespace std; struct Person { char name[6]; int year; int month; int day; }; int main() { int n; scanf("%d", &n); Person *persons = new Person[n]; char name[6]; int year, month, day; int old, young;// 注意一定不要给最年长的和最年轻的赋初值 int count = 0; for (int i = 0; i < n; i++) { scanf("%s %d/%d/%d", persons[i].name, &year, &month, &day); if (year > 2014 || year < 1814) continue; if (year == 2014) { if (month > 9) continue; else if(month == 9) { if (day > 6) continue; } } if (year == 1814) { if (month < 9) continue; else if (month == 9) if (day < 6) continue; } if (count > 0) { if (persons[old].year > year) old = i; else if (persons[old].year == year) { if (persons[old].month > month) old = i; else if (persons[old].month == month) if (persons[old].day > day) old = i; } if (persons[young].year < year) young = i; else if (persons[young].year == year) { if (persons[young].month < month) young = i; else if (persons[young].month == month) if (persons[young].day < day) young = i; } } persons[i].year = year; persons[i].month = month; persons[i].day = day; if (!count) { old = i; young = i; } count++; } if (count == 0) printf("0"); else printf("%d %s %s", count, persons[old].name, persons[young].name); return 0; }
这篇关于PAT Basic Level 1028 人口普查(C++实现)的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2025-01-12深入理解 ECMAScript 2024 新特性:Map.groupBy() 分组操作
- 2025-01-11国产医疗级心电ECG采集处理模块
- 2025-01-10Rakuten 乐天积分系统从 Cassandra 到 TiDB 的选型与实战
- 2025-01-09CMS内容管理系统是什么?如何选择适合你的平台?
- 2025-01-08CCPM如何缩短项目周期并降低风险?
- 2025-01-08Omnivore 替代品 Readeck 安装与使用教程
- 2025-01-07Cursor 收费太贵?3分钟教你接入超低价 DeepSeek-V3,代码质量逼近 Claude 3.5
- 2025-01-06PingCAP 连续两年入选 Gartner 云数据库管理系统魔力象限“荣誉提及”
- 2025-01-05Easysearch 可搜索快照功能,看这篇就够了
- 2025-01-04BOT+EPC模式在基础设施项目中的应用与优势