문제
https://www.acmicpc.net/problem/1927
소스코드
#include <iostream>
#include <vector>
#include <queue>
#include <functional>
using namespace std;
int main(void) {
int N;
scanf("%d", &N);
priority_queue<int, vector<int>, greater<int>> pq;
for (int i = 0; i < N; i++) {
int input;
scanf("%d", &input);
if (input == 0) {
if (pq.empty()) {
printf("0\n");
}
else {
printf("%d\n", pq.top());
pq.pop();
}
}
else {
pq.push(input);
}
}
}
cin, cout을 쓰니까 시간초과가 나서 scanf, printf 를 사용했다.
priority_queue 를 사용하면 간단한 문제!
priority_queue<int, vector<int>, greater<int>> pq; 이렇게 선언해서 사용하면 된다. int는 저장되는 형, vector는 배열이 저장되는 공간, greater는 오름차순이라는 조건을 의미한다. greater를 사용하기 위해서는 <functional> 라이브러리를 include 해줘야 한다.!
'개인 공부 > 코딩테스트' 카테고리의 다른 글
[C++][백준 4673][에라토스테네스의 체] 셀프 넘버 :: seoftware (0) | 2020.03.03 |
---|---|
[C++][백준 11279][힙] 최대 힙 :: seoftware (0) | 2020.03.03 |
[C++][프로그래머스][해시] 전화번호 목록 :: seoftware (0) | 2020.03.03 |
[C++][프로그래머스][완전탐색] 카펫 :: seoftware (0) | 2020.03.03 |
[C++][프로그래머스][BFS DFS] 단어변환 :: seoftware (0) | 2020.03.01 |
댓글