1028 人口普查 (20 分)
阿新 • • 發佈:2019-02-04
應該 can psu fonts style pac include 不一定 class 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 分)