某城镇进行人口普查,得到了全体居民的生日。现请你写个程序,找出镇上最年长和最年轻的人。
这里确保每个输入的日期都是合法的,但不一定是合理的——假设已知镇上没有超过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
#include<iostream>
#include<vector>
#include<algorithm>
#include<string>
#include<stdio.h>
using namespace std;
struct people{
char name[6];
int year;
int month;
int day;
};
bool cmp(const people & peo1,const people & peo2){
if(peo1.year != peo2.year){
return peo1.year < peo2.year;
}else{
if(peo1.month != peo2.month){
return peo1.month < peo2.month;
}else{
return peo1.day < peo2.day;
}
}
}
int main(){
for(int n;scanf("%d",&n) != EOF;){
vector<people>reasonable;
for(int i =0;i < n;i++){
people temp;
scanf("%s %d/%d/%d",temp.name,&temp.year,&temp.month,&temp.day);
if(temp.year < 2014 && temp.year >1814 ||(temp.year == 2014 && temp.month <9)
||(temp.year == 2014 && temp.month==9&&temp.day<=6)||(temp.year == 1814 && temp.month > 9)
||(temp.year==1814&&temp.month==9&&temp.day>=6)){
reasonable.push_back(temp);
}
}
sort(reasonable.begin(),reasonable.end(),cmp);
if(reasonable.size()){
cout<<reasonable.size()<<" "<<reasonable[0].name<<" "<<reasonable[reasonable.size()-1].name<<endl;
}else{
cout<<"0"<<endl;
}
}
return 0;
}
人口普查程序设计
本文介绍了一个用于城镇人口普查的程序设计案例,该程序能够筛选出合理范围内的居民生日,并找出最年长和最年轻的人。输入包括居民姓名及生日,程序会排除不合理数据。
447

被折叠的 条评论
为什么被折叠?



