19年春季第二題 PAT甲級 1157 Anniversary(25 分)
Zhejiang University is about to celebrate her 122th anniversary in 2019. To prepare for the celebration, the alumni association (校友會) has gathered the ID’s of all her alumni. Now your job is to write a program to count the number of alumni
among all the people who come to the celebration.
Input Specification:
Each input file contains one test case. For each case, the first part is about the information of all the alumni. Given in the first line is a positive integer NNN (≤105).
Then NNN lines follow, each contains an ID number of an alumnus. An ID number is a string of 18 digits or the letter X. It is guaranteed that all the ID’s are distinct.
The next part gives the information of all the people who come to the celebration.
Again given in the first line is a positive integer MMM(≤105). Then MMM lines follow, each contains an ID number of a guest. It is guaranteed that all the ID’s are distinct.
Output Specification:
First print in a line the number of alumni among all the people who come to the celebration. Then in the second line, print the ID of the oldest alumnus – notice that the 7th - 14th digits of the ID gives one’s birth date. If no alumnus comes, output the ID of the oldest guest instead. It is guaranteed that such an alumnus or guest is unique.
Sample Input:
5
372928196906118710
610481197806202213
440684198612150417
13072819571002001X
150702193604190912
6
530125197901260019
150702193604190912
220221196701020034
610481197806202213
440684198612150417
370205198709275042
3
150702193604190912
說真的,不難。就是個排序題,優先將學生排在前面,然後再是按照年齡排,年齡大的數字小,如果學生為0也要輸出0
#include<iostream>
#include<algorithm>
#include<cstring>
using namespace std;
const int maxn = 200005;
struct node{
string id;
bool isStu;
}person[maxn];
bool cmp(node a, node b){
if(a.isStu != b.isStu) return a.isStu > b.isStu;//bool就是01
else return a.id.substr(6,8) < b.id.substr(6,8);
}
int main(){
int n;
cin>>n;
for(int i = 0; i < n; i++){
cin>>person[i].id;
person[i].isStu = true;
}
int m;
cin>>m;
for(int i = n; i < n + m; i++){
cin>>person[i].id;
person[i].isStu = false;
}
int cnt = 0;
for(int i = 0; i < n + m; i++){
if(person[i].isStu == true) cnt++;
}
sort(person,person+m+n,cmp);
cout<<cnt;
cout<<endl<<person[0].id;
return 0;
}
相關文章
- 20年春季甲級pat考試
- 2020年7月第2題 PAT甲級真題 The Judger (25分)
- PAT甲級1122 Hamiltonian Cycle (25分)|C++實現C++
- PAT甲級1154 Vertex Coloring (25分)|C++實現C++
- PAT甲級1110 Complete Binary Tree (25分)|C++實現C++
- PAT甲級考試題庫題目分類
- PAT 甲級 1152 Google Recruitment (20分)GoUI
- 2019年9月8日秋季PAT甲級題解-2-1161-Merging Linked Lists (25 分)
- PAT甲級1032 Sharing
- 【PAT甲級A1084】Broken Keyboard (20分)(c++)C++
- PAT甲級1030 Travel Plan
- 浙大PAT甲級考試
- 【PAT甲級A1038】Recover the Smallest Number (30分)(c++)C++
- PAT甲級真題1069 數字黑洞(巧妙解法)
- PAT甲級1023 Have Fun with Number
- 2024 秋季PAT認證甲級(題解A1-A4)
- PAT甲級-1015. Reversible Primes (20)
- PAT甲級1126~1130|C++實現C++
- 【PAT甲級A1065】A+B and C (64bit) (20分)(c++)C++
- (非原創)PAT甲級1123 Is It a Complete AVL Tree (30分)|C++實現C++
- PAT(甲級)2020年秋季考試 7-1 Panda and PP Milk (20分)
- PAT甲級-1014. Waiting in Line (30)(模擬)AI
- PAT 1033 To Fill or Not to Fill (25分) 貪心思想
- PAT甲級-1140. Look-and-say Sequence (20)(模擬)
- PAT (Advanced Level) Practice 1149 Dangerous Goods Packaging (25分)Go
- 2021.9.12週六PAT甲級考試覆盤與總結
- PTA甲級 1076 Forwards on Weibo (30分)Forward
- 菜鳥記錄:c語言實現PAT甲級1010--RadixC語言
- PAT乙級 | 1086 就不告訴你 (15分)
- PAT:1020. Tree Traversals (25) AC
- PAT 乙級
- PTA甲級——Be Unique
- PAT 乙級 1094 谷歌的招聘 (20分)---【素數 字串】谷歌字串
- PAT乙級1023
- PAT1040 Longest Symmetric String (25分) 中心擴充套件法+動態規劃套件動態規劃
- 1021 Deepest Root(甲級)
- 【PAT乙級、C++】1024 科學計數法 (20分)C++
- 【PTA甲級、C++簡單解答】1001 A+B Format (20分)C++ORM