PAT 乙級 1028 人口普查

2021-09-25 21:19:17 字數 1650 閱讀 8975

某城鎮進行人口普查,得到了全體居民的生日。現請你寫個程式,找出鎮上最年長和最年輕的人。

這裡確保每個輸入的日期都是合法的,但不一定是合理的——假設已知鎮上沒有超過 200 歲的老人,而今天是 2014 年 9 月 6 日,所以超過 200 歲的生日和未出生的生日都是不合理的,應該被過濾掉。

輸入格式:

輸入在第一行給出正整數 n,取值在(0,10​5​​];隨後 n 行,每行給出 1 個人的姓名(由不超過 5 個英文本母組成的字串)、以及按yyyy/mm/dd(即年/月/日)格式給出的生日。題目保證最年長和最年輕的人沒有並列。

輸出格式:

在一行中順序輸出有效生日的個數、最年長人和最年輕人的姓名,其間以空格分隔。

此題坑在測試點3!

換了兩種方法,也測試了沒有符合條件的情況,輸出的也是0.

然後它還是判錯了。。。可能是空字串的問題??

你需要單獨輸出。

(1)通過年, 月, 日 單獨判斷

#include#include#include#include#includeusing namespace std;

int y = 2014, m = 9 , d = 6;

const int maxn = 1e5+5;

struct people

people[maxn];

int legal(int y , int m , int day)

}else if( 2014 - y == 200)

}return 1;

}bool bmp(people a , people b)

else

return a.month <= b.month;

}else

return a.year <= b.year;

}int main()

}sort(people , people + idx , bmp);

if(idx == 0)

cout << 0 << endl;

else

cout << idx << " " << people[0].name << " " <(2)通過字串直接判斷

#include#include#include#include#includeusing namespace std;

string datamax = "2014/09/06";

string datamin = "1814/09/06";

const int maxn = 1e5+5;

struct people

people[maxn];

bool cmp(struct people a , struct people b)

int main()

; }

}sort(people , people + idx ,cmp);

if(idx == 0 )

cout << 0 << endl;

else

cout << idx << " " << people[0].name << " " << people[idx - 1].name << endl;

}

PAT 乙級 1028 人口普查

某城鎮進行人口普查,得到了全體居民的生日。現請你寫個程式,找出鎮上最年長和最年輕的人。這裡確保每個輸入的日期都是合法的,但不一定是合理的 假設已知鎮上沒有超過200歲的老人,而今天是2014年9月6日,所以超過200歲的生日和未出生的生日都是不合理的,應該被過濾掉。輸入格式 輸入在第一行給出正整數n...

PAT乙級 1028 人口普查

某城鎮進行人口普查,得到了全體居民的生日。現請你寫個程式,找出鎮上最年長和最年輕的人。這裡確保每個輸入的日期都是合法的,但不一定是合理的 假設已知鎮上沒有超過 200 歲的老人,而今天是 2014 年 9 月 6 日,所以超過 200 歲的生日和未出生的生日都是不合理的,應該被過濾掉。輸入在第一行給...

PAT乙級 1028 人口普查

某城鎮進行人口普查,得到了全體居民的生日。現請你寫個程式,找出鎮上最年長和最年輕的人。這裡確保每個輸入的日期都是合法的,但不一定是合理的 假設已知鎮上沒有超過 200 歲的老人,而今天是 2014 年 9 月 6 日,所以超過 200 歲的生日和未出生的生日都是不合理的,應該被過濾掉。輸入在第一行給...