1028 人口普查 (20 分)
Posted xx123
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了1028 人口普查 (20 分)相关的知识,希望对你有一定的参考价值。
1028 人口普查 (20 分)
某城镇进行人口普查,得到了全体居民的生日。现请你写个程序,找出镇上最年长和最年轻的人。
这里确保每个输入的日期都是合法的,但不一定是合理的——假设已知镇上没有超过 200 岁的老人,而今天是 2014 年 9 月 6 日,所以超过 200 岁的生日和未出生的生日都是不合理的,应该被过滤掉。
输入格式:
输入在第一行给出正整数 N,取值在(0,10?5??];随后 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
自己写的
1 #include<iostream> 2 #include<string> 3 using namespace std; 4 int main() 5 { 6 int n,cnt=0; 7 scanf("%d",&n); 8 string old_name,old_birth,young_name,young_birth; 9 string name,a; 10 for(int i=0;i<n;i++) 11 { 12 cin>>name>>a; 13 string a1=a.substr(0,4); 14 string a2=a.substr(5,7); 15 string a3=a.substr(8); 16 if(((stoi(a1)==1814&&stoi(a2)==9&&stoi(a3)>=6)||(stoi(a1)==1814&&stoi(a2)>9)||(stoi(a1)>1814))&&((stoi(a1)==2014&&stoi(a2)==9&&stoi(a3)<=6)||(stoi(a1)==2014&&stoi(a2)<9)||(stoi(a1)<2014))){ 17 cnt++; 18 if(cnt==1) 19 { 20 old_name=young_name=name; 21 old_birth=young_birth=a; 22 } 23 string o1=old_birth.substr(0,4); 24 string o2=old_birth.substr(5,7); 25 string o3=old_birth.substr(8); 26 string y1=young_birth.substr(0,4); 27 string y2=young_birth.substr(5,7); 28 string y3=young_birth.substr(8); 29 if((stoi(a1)==stoi(y1)&&stoi(a2)==stoi(y2)&&stoi(a3)>stoi(y3))||(stoi(a1)==stoi(y1)&&stoi(a2)>stoi(y2))||(stoi(a1)>stoi(y1))){ 30 young_birth=a; 31 young_name=name; 32 } 33 if((stoi(a1)==stoi(o1)&&stoi(a2)==stoi(o2)&&stoi(a3)<stoi(o3))||(stoi(a1)==stoi(o1)&&stoi(a2)<stoi(o2))||(stoi(a1)<stoi(o1))){ 34 old_birth=a; 35 old_name=name; 36 } 37 } 38 39 } 40 if(cnt!=0)cout<<cnt<<" "<<old_name<<" "<<young_name; 41 else cout<<cnt; 42 return 0; 43 }
又臭又长 还不能满分
柳婼小姐姐的
1 #include <iostream> 2 using namespace std; 3 int main() { 4 int n, cnt = 0; 5 cin >> n; 6 string name, birth, maxname, minname, maxbirth = "1814/09/06", minbirth = "2014/09/06"; 7 for (int i = 0; i < n; i++) { 8 cin >> name >> birth; 9 if (birth >= "1814/09/06" && birth <= "2014/09/06") { 10 cnt++; 11 if (birth >= maxbirth) { 12 maxbirth = birth; 13 maxname = name; 14 } 15 if (birth <= minbirth) { 16 minbirth = birth; 17 minname = name; 18 } 19 } 20 } 21 cout << cnt; 22 if (cnt != 0) cout << " " << minname << " " << maxname; 23 return 0; 24 }
又精简又思路清晰还是满分 。
唉??
以上是关于1028 人口普查 (20 分)的主要内容,如果未能解决你的问题,请参考以下文章