本文主要是介绍7-2 Anniversary,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
7-2 Anniversary
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 N (≤105). Then N 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 M (≤105). Then M 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
Sample Output:
3
150702193604190912
#include<iostream>
#include<map>
using namespace std;
string maxx( string a ,string b ){for( int i=6;i<=13;i++){ if( a[i] <b[i])return a;else if( a[i] > b[i] )return b; }return a;
}
int main(void){int n;scanf("%d",&n);map<string ,int> mp;string s;for( int i=1;i<=n;i++){cin>>s;mp[s] = 1;} int m,flag=0,ans=0;scanf("%d",&m);string maxA="999999999999999999",maxG="999999999999999999";for( int i=1;i<=m;i++){cin>>s;if( mp[s] ){ maxA=maxx( maxA,s);flag = 1;ans++;}else maxG=maxx( maxG,s);}printf("%d\n",ans);if( flag )cout<<maxA<<endl;else cout<<maxG<<endl; return 0;
}
这篇关于7-2 Anniversary的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!