mojo's Blog
[백준 7662] 이중 우선순위 큐 본문
문제 링크 => 7662번: 이중 우선순위 큐 (acmicpc.net)
이 문제는 multiset을 이용해서 푸는 문제이다.
multiset은 원소들의 중복을 허용하며 정렬, 삭제, 삽입 등 이러한 operation을 O(logN) 만큼
빠르게 진행 해준다는 점에서 유용하다. ( 원소들이 Tree 구조로 되어있어서 시간복잡도가 logN 임을 알 수 있다 )
이 문제를 통해 multiset 에 대한 사용법을 익히면 좋을듯 하다.
풀이 Code =>
#define _CRT_SECURE_NO_WARNINGS
#include <string>
#include <stdio.h>
#include <math.h>
#include <iostream>
#include <vector>
#include <algorithm>
#include <map>
#include <queue>
#include <set>
#include <stack>
#include <time.h>
#define INF 100000000
#define endl '\n'
using namespace std;
void insert_Q(int num, multiset<int>& ms) {
ms.insert(num);
}
void delete_Q(int num, multiset<int>& ms) {
if (num == -1) { // Delete First
ms.erase(ms.begin());
}
else { // Delete End
ms.erase(--ms.end());
}
}
void test() {
multiset<int> ms;
int n;
cin >> n;
for (int i = 0; i < n; i++) {
char ch;
int num;
cin >> ch >> num;
if (ch == 'I') insert_Q(num, ms);
else {
if (ms.size()) delete_Q(num, ms);
}
}
if (ms.size() == 0) cout << "EMPTY" << endl;
else cout << *(--ms.end()) << " " << *(ms.begin()) << endl;
}
int main() {
ios_base::sync_with_stdio(false); cin.tie(0); cout.tie(0);
int t;
cin >> t;
for (int i = 0; i < t; i++) {
test();
}
return 0;
}
'백준 > etc' 카테고리의 다른 글
[백준 4779] 칸토어 집합 (0) | 2021.07.18 |
---|---|
[백준 10090] Counting Inversions (0) | 2021.07.16 |
[백준 11440] 피보나치 수의 제곱의 합 (0) | 2021.07.08 |
[백준 2086] 피보나치 수의 합 (0) | 2021.07.08 |
[백준 5525] IOIOI (0) | 2021.06.30 |
Comments