Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- 백트래킹
- 수학
- VR
- 그래프
- 자료구조
- ue5
- 트리
- Team Fortress 2
- 투 포인터
- 누적 합
- 정렬
- 다이나믹 프로그래밍
- 백준
- 우선순위 큐
- 다익스트라
- 유니티
- 알고리즘
- 구현
- c++
- BFS
- 유니온 파인드
- XR Interaction Toolkit
- 재귀
- 문자열
- 시뮬레이션
- 브루트포스
- 스택
- DFS
- 그리디 알고리즘
- Unreal Engine 5
Archives
- Today
- Total
1일1알
백준 13414번 수강신청 C++ 본문
https://www.acmicpc.net/problem/13414
map<string, int> 로 입력받은 순서를 통해 우선순위를 정하고 원소들을 vector<pair<int,string>> 으로 옮겨서 우선순위를 기준으로 오름차순 정렬
#include <iostream>
#include <string>
#include <vector>
#include <math.h>
#include <algorithm>
#include <utility>
#include <stack>
#include <queue>
#include <math.h>
#include <set>
#include <map>
#include <list>
#include <unordered_map>
#include <unordered_set>
#include <iomanip>
#include <limits.h>
using namespace std;
using int64 = long long;
struct Info {
int rank;
string str;
};
int k, l;
int main() {
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
cin >> k >> l;
map<string, int> m;
vector<pair<int,string>> v;
int rank = 0;
for (int i = 0; i < l; i++) {
string str;
cin >> str;
m[str] = rank++;
}
for (auto a : m) {
v.push_back({ a.second,a.first });
}
sort(v.begin(), v.end());
for (int i = 0; i < min(k,int(v.size())); i++) {
cout << v[i].second << "\n";
}
}
'알고리즘' 카테고리의 다른 글
백준 17952번 과제는 끝나지 않아! C++ (0) | 2023.01.30 |
---|---|
백준 1240번 노드사이의 거리 C++ (0) | 2023.01.29 |
백준 14921번 용액 합성하기 C++ (0) | 2023.01.27 |
백준 6068번 시간 관리하기 C++ (1) | 2023.01.26 |
백준 13565번 침투 C++ (0) | 2023.01.25 |