mojo's Blog

[백준 7662] 이중 우선순위 큐 본문

백준/etc

[백준 7662] 이중 우선순위 큐

_mojo_ 2021. 6. 30. 22:21

문제 링크 => 7662번: 이중 우선순위 큐 (acmicpc.net)

 

7662번: 이중 우선순위 큐

입력 데이터는 표준입력을 사용한다. 입력은 T개의 테스트 데이터로 구성된다. 입력의 첫 번째 줄에는 입력 데이터의 수를 나타내는 정수 T가 주어진다. 각 테스트 데이터의 첫째 줄에는 Q에 적

www.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