pta 1100 校庆 (25 分)
ACM比赛整理
共 1200字,需浏览 3分钟
·
2022-01-13 06:34
1100 校庆 (25 分)
2019 年浙江大学将要庆祝成立 122 周年。为了准备校庆,校友会收集了所有校友的身份证号。现在需要请你编写程序,根据来参加校庆的所有人士的身份证号,统计来了多少校友。
输入格式:
输入在第一行给出不超过 105 的正整数 N,随后 N 行,每行给出一位校友的身份证号(18 位由数字和大写字母X组成的字符串)。题目保证身份证号不重复。
随后给出前来参加校庆的所有人士的信息:首先是一个不超过 105 的正整数 M,随后 M 行,每行给出一位人士的身份证号。题目保证身份证号不重复。
输出格式:
首先在第一行输出参加校庆的校友的人数。然后在第二行输出最年长的校友的身份证号 —— 注意身份证第 7-14 位给出的是 yyyymmdd 格式的生日。如果没有校友来,则在第二行输出最年长的来宾的身份证号。题目保证这样的校友或来宾必是唯一的。
输入样例:
5
372928196906118710
610481197806202213
440684198612150417
13072819571002001X
150702193604190912
6
530125197901260019
150702193604190912
220221196701020034
610481197806202213
440684198612150417370205198709275042
输出样例:
3150702193604190912
代码:
#include
#include
#include
#include
#include
using namespace std;
struct node{
string s;
int id;
bool operator <(const node& a)const{
if(id != a.id) return id > a.id;
return s.substr(6, 8) < a.s.substr(6,8);
}
};
int main() {
int n, m;
cin >> n;
unordered_setst;
string s;
for(int i = 0; i < n; i++) {
cin >> s;
st.insert(s);
}
cin >> m;
int count = 0;
vectorres;
for(int i = 0; i < m; i++) {
cin >> s;
if(st.count(s)){
count++;
res.push_back({s, 1});
}else{
res.push_back({s, 0});
}
}
sort(res.begin(), res.end());
cout<cout< return 0;
}
评论