#29049: c++ map_solution


s411085056@gm.ntpu.edu.tw (小宥)

學校 : 新北市立鶯歌高級工商職業學校
編號 : 171301
來源 : [180.217.114.77]
最後登入時間 :
2022-05-28 11:00:45
a743. 10420 - List of Conquests -- UVa10420 | From: [180.217.244.181] | 發表日期 : 2022-01-25 14:14

#include <bits/stdc++.h>

using namespace std;

int main()
{
int n;
cin >> n;
map <string, int> mp;
string temp;
while (n--) {
string contry;
cin >> contry >> temp >> temp;
mp[contry]++;
}
for (auto i : mp)
cout << i.first << ' ' << i.second << endl;
return 0;
}
 
ZeroJudge Forum