map을 이용해서 입력받은 책의 이름들을 key값으로 넣어주었다.
이렇게 하면 문제는 출력할 때 동일 우선순위(=value가 같을 때)에서 알파벳 순서대로 출력할 때 발생하게 된다.
그래서 map의 value값과 key값을 따로 정렬해주었다.
#include <iostream>
#include <map>
#include <vector>
#include <string>
#include <algorithm>
using namespace std;
int N;
map<string, int> m;
bool cmp(const pair<string, int> &a, const pair<string, int> &b)
{
if (a.second == b.second)
{
return a.first < b.first;
}
return a.second > b.second;
}
int main()
{
cin >> N;
string temp;
for (int i = 0; i < N; ++i)
{
cin >> temp;
m[temp] += 1;
}
vector<pair<string, int>> vec(m.begin(), m.end());
sort(vec.begin(), vec.end(), cmp);
cout << vec[0].first;
}
'알고리즘 & 자료구조 > 백준' 카테고리의 다른 글
[C++/알고리즘] 백준 2742 (기찍N) (0) | 2021.04.12 |
---|---|
[C++/알고리즘] 백준 11047 (동전0) (0) | 2021.04.11 |
[C++/알고리즘] 백준 1475 (방번호) (0) | 2021.04.08 |
[C++/알고리즘] 백준 13904 (과제) (0) | 2020.10.18 |
[C++/알고리즘] 백준 11279 (X) (0) | 2020.01.13 |