티스토리 뷰

백준

백준 소스코드 [C++] 1927 최소 힙

Hani_Levenshtein 2020. 8. 28. 17:30

https://www.acmicpc.net/problem/1927

 

1927번: 최소 힙

첫째 줄에 연산의 개수 N(1≤N≤100,000)이 주어진다. 다음 N개의 줄에는 연산에 대한 정보를 나타내는 정수 x가 주어진다. 만약 x가 자연수라면 배열에 x라는 값을 넣는(추가하는) 연산이고, x가 0이�

www.acmicpc.net

백준 소스코드 [C++] 1927 최소 힙

#include <iostream>
#include <algorithm>
#include <queue>
#include <string.h>
#include <limits.h>
typedef long long ll;
using namespace std;

int main() {
	ios_base::sync_with_stdio(false);
	cin.tie(NULL);
	int n,m;
	cin >> n;
	priority_queue <int,vector<int>,greater<int>> pq;
	while (n--) {
		cin >> m;
		if (m != 0) pq.push(m);
		else {
			if (pq.empty() == true)cout << "0" << '\n';
			else {
				cout << pq.top()<<'\n';
				pq.pop();
			}

		}
	}
	return 0;
}
댓글