1302 : 베스트셀러

풀이

다정했던 사람이여 나를 잊었나

벌써 나를 잊어버렸나

코드

#include <iostream>
#include <string>
#include <map>
using namespace std;

int n, rn;
string s, rs;
map<string, int> m;

int main() {
	ios_base::sync_with_stdio(0); cin.tie(0);

	cin >> n;
	while (n--) cin >> s, m[s]++;

	for (auto it : m) if (rn < it.second)
		rn = it.second, rs = it.first;

	cout << rs;

	return 0;
}

아무말

백준, 백준 온라인 저지, BOJ, Baekjoon Online Judge, C, C++, 씨, 씨쁠쁠, JAVA, algorithm, 자바, 알고리즘, 자료구조, 문제, 문제 풀이, 풀이

wookje.kwon's profile image

wookje.kwon

2018-03-27 16:51

Read more posts by this author