-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Silver II] Title: 최대 힙, Time: 196 ms, Memory: 37044 KB -BaekjoonHub
- Loading branch information
Showing
2 changed files
with
51 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
# [Silver II] 최대 힙 - 11279 | ||
|
||
[문제 링크](https://www.acmicpc.net/problem/11279) | ||
|
||
### 성능 요약 | ||
|
||
메모리: 37044 KB, 시간: 196 ms | ||
|
||
### 분류 | ||
|
||
자료 구조, 우선순위 큐 | ||
|
||
### 제출 일자 | ||
|
||
2024년 7월 4일 23:35:04 | ||
|
||
### 문제 설명 | ||
|
||
<p>널리 잘 알려진 자료구조 중 최대 힙이 있다. 최대 힙을 이용하여 다음과 같은 연산을 지원하는 프로그램을 작성하시오.</p> | ||
|
||
<ol> | ||
<li>배열에 자연수 x를 넣는다.</li> | ||
<li>배열에서 가장 큰 값을 출력하고, <span style="line-height:1.6em">그 값을 배열에서 제거한다. </span></li> | ||
</ol> | ||
|
||
<p><span style="line-height:1.6em">프로그램은 처음에 비어있는 배열에서 시작하게 된다.</span></p> | ||
|
||
### 입력 | ||
|
||
<p>첫째 줄에 연산의 개수 N(1 ≤ N ≤ 100,000)이 주어진다. 다음 N개의 줄에는 연산에 대한 정보를 나타내는 정수 x가 주어진다. 만약 x가 자연수라면 배열에 x라는 값을 넣는(추가하는) 연산이고, x가 0이라면 배열에서 가장 큰 값을 출력하고 그 값을 배열에서 제거하는 경우이다. 입력되는 자연수는 2<sup>31</sup>보다 작다.</p> | ||
|
||
### 출력 | ||
|
||
<p>입력에서 0이 주어진 횟수만큼 답을 출력한다. 만약 배열이 비어 있는 경우인데 가장 큰 값을 출력하라고 한 경우에는 0을 출력하면 된다.</p> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
import sys | ||
import heapq as hq | ||
input = sys.stdin.readline | ||
|
||
n = int(input()) | ||
heap = [] | ||
|
||
for i in range(n): | ||
x = int(input()) | ||
if x !=0: | ||
hq.heappush(heap,(-x)) | ||
else: | ||
try: | ||
print(-1 * hq.heappop(heap)) | ||
except: | ||
print(0) |