https://www.acmicpc.net/problem/1927
#define _CRT_SECURE_NO_WARNINGS
#include <iostream>
#include <thread>
#include <vector>
#include <string>
#include <cstring>
#include <set>
#include <queue>
#include <math.h>
#include <stack>
#include <algorithm>
#include <unordered_map>
#define endl "\n"
#define INT_MAX int(1e9)
#define MAX 10001
using namespace std;
int N;
std::priority_queue<int> prQueue;
void Input()
{
cin >> N;
};
void Solve()
{
int x;
for (int i = 0; i < N; ++i)
{
cin >> x;
if (x == 0)
{
if (prQueue.empty())
{
cout << 0 << endl;
}
else
{
cout << -prQueue.top() << endl;
prQueue.pop();
}
}
else
{
prQueue.push(-x);
}
}
}
int main() {
ios::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
// freopen("input_c.txt", "r", stdin);
Input();
Solve();
return 0;
}
'CodingTest > 99클럽2024스터디' 카테고리의 다른 글
99클럽 코테 스터디 12일차 TIL, 백준 / 뉴스 전하기 (0) | 2024.08.03 |
---|---|
99클럽 코테 스터디 11일차 TIL, 프로그래머스 / 가장 큰 수 (0) | 2024.08.01 |
99클럽 코테 스터디 8일차 TIL, 프로그래머스 / 두 큐 합치기 (0) | 2024.07.29 |
99클럽 코테 스터디 6일차 TIL, 프로그래머스 / 테이블 해시함수 (0) | 2024.07.28 |
99클럽 코테 스터디 5일차 TIL, 프로그래머스 / 베스트 앨범 (0) | 2024.07.27 |