#25878:


liu76214@gmail.com (Andrew liu)

學校 : 新竹市立建功高級中學
編號 : 92407
來源 : [111.243.122.123]
最後登入時間 :
2021-08-15 15:26:39
a743. 10420 - List of Conquests -- UVa10420 | From: [111.243.124.202] | 發表日期 : 2021-06-29 20:25

#include <iostream>

#include <string>

#include <map>

 

using namespace std;

 

int main() {

map<string, int> Country_and_population;

int times = 0;

cin >> times;

while (times--) {

string country, name = "";

cin >> country;

getline(cin,name);

Country_and_population[country]++;

 

}

for (map<string, int>::iterator i = Country_and_population.begin(); i != Country_and_population.end(); i++) {

cout << i->first << " " << i->second << endl;

}

 

return 0;

}

 
ZeroJudge Forum