Recent Posts
Notice
No Rules Rules
베스트셀러 (feat. 백준, 1302번) 본문
728x90
반응형
베스트셀러
https://www.acmicpc.net/problem/1302
// woohyeon.kim
// kim519620.tistory.com
#include <iostream>
#include <string>
#include <map>
#include <vector>
#include <algorithm>
using namespace std;
bool cmp(const pair<string, int>& v1, const pair<string, int>& v2){
if(v1.second == v2.second)
return v1.first < v2.first;
return v1.second > v2.second;
}
int main() {
ios::sync_with_stdio(false), cin.tie(NULL);
register int N;
map<string, int> arr;
string str;
cin >> N;
for(register int n = 0; n < N; ++n)
cin >> str, ++arr[str];
vector<pair<string, int>> ans(arr.begin(), arr.end());
sort(ans.begin(), ans.end(), cmp);
cout << ans.front().first;
return 0;
}
// *&)*@*
반응형
자료구조 map을 vector로 변경하여 sort의 predicate를 정의하면 쉽게 해결할 수 있습니다.
728x90
반응형
'생활 > 코테' 카테고리의 다른 글
30 (feat. 백준, 10610번) (0) | 2022.11.10 |
---|---|
팰린드롬인지 확인하기 (feat. 백준, 10988번) (0) | 2022.11.10 |
타일 채우기 (feat. 백준, 2133번) (0) | 2022.11.09 |
명령 프롬프트 (feat. 백준, 1032번) (0) | 2022.11.09 |
용액 (feat. 백준, 2467번) (0) | 2022.11.09 |
Comments