반응형
1. 문제
https://www.acmicpc.net/problem/1927
2. 풀이
우선순위큐
3. 구현
import sys
# sys.stdin = open('input.txt')
import heapq
lis = []
n = int(sys.stdin.readline().strip())
while n:
n-=1
tmp = int(sys.stdin.readline().strip())
if tmp==0:
if len(lis)==0:
sys.stdout.write('0')
else:
sys.stdout.write(str(heapq.heappop(lis)))
sys.stdout.write('\n')
else:
heapq.heappush(lis, tmp)
4. 반례
@leethyun 님
9
1
2
2
3
0
0
0
0
0
답:
1
2
2
3
0
반응형
'PS > 백준' 카테고리의 다른 글
[테스트케이스추가] 백준 1269번: 대칭 차집합 python 파이썬 (0) | 2021.08.06 |
---|---|
백준 11279번: 최대힙 파이썬 (0) | 2021.08.06 |
[테스트케이스 추가] 백준 16398 번: 행성연결, python 파이썬 (0) | 2021.08.06 |
[테스트케이스 정리] 백준 11723 번: 집합 python, 파이썬 (0) | 2021.07.23 |
[테스트케이스 모음] 백준 2805번 : 나무자르기 python, 파이썬 (3) | 2021.07.20 |
댓글