[백준] 13414번
💻 C++ 기반
#include <iostream>
#include <unordered_map>
#include <algorithm>
#include <vector>
#include <utility>
using namespace std;
int main()
{
ios_base::sync_with_stdio(false);
cin.tie(NULL);
int K, L;
cin >> K >> L;
unordered_map<string, int> students;
for (int i = 0; i < L; i++)
{
string student;
cin >> student;
students[student] = i;
}
vector<pair<int, string> > v;
for (unordered_map<string, int>::iterator idx = students.begin(); idx != students.end(); idx++)
{
v.push_back(make_pair(idx->second, idx->first));
}
sort(v.begin(), v.end());
if (v.size() < K)
{
vector<pair<int, string> >::iterator i;
for (i = v.begin(); i != v.end(); i++)
{
cout << (*i).second << '\n';
}
}
else
{
for (int i = 0; i < K; i++)
{
cout << v[i].second << '\n';
}
}
return 0;
}
Author And Source
이 문제에 관하여([백준] 13414번), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@jieun_han/백준-13414번저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)