Uva10420 - List of Conquests (水題)

題目大意:

給你 n 行話,第一個空白前是國家名,之後則全是人名。

非常水題,考你 string 語法熟不熟 (寫 py 的孩子們,一定會很討厭吧www)

分析:

dict 解決一切,還可以靠著 dict 紅黑樹,自動把資料排序完。

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
#include <iostream>
#include <bits/stdc++.h>
#define LOCAL
using namespace std;


int main()
{
#ifdef LOCAL
freopen("in1.txt" , "r" , stdin );
freopen("out.txt" , "w" , stdout );
#endif // LOCAL
int n , p ;
map<string , int > MapCountry ;
map<string , int> MapName ;
string strLine , strCountry , strName ;
cin >> n ;
cin.ignore() ;
while(n--){
getline(cin , strLine) ;
p = strLine.find(' ') ;
strCountry = strLine.substr(0 , p ) ;
strName = strLine.substr(p+1 , strLine.length() ) ;

//debug
//cout << strName << ' ' << strCountry << '\n' ;

if(MapCountry[strCountry])
MapCountry[strCountry]++ ;
else
MapCountry[strCountry] = 1 ;
if(!MapName[strName])
MapName[strName] = 1 ;
}
for(auto it : MapCountry )
cout << it.first << ' ' << it.second << '\n' ;

return 0;
}
  • 版權聲明: 本部落格所有文章除有特別聲明外,均採用 Apache License 2.0 許可協議。轉載請註明出處!
  • © 2020-2024 John Doe
  • Powered by Hexo Theme Ayer
  • PV: UV: