Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- 날짜형을 문자형으로
- JSONArray 분할
- 문자형을 날짜형으로
- JSON 분해
- 스테이지에 올리기
- batchInsert
- 성능개선
- Meta Table
- 무시하기
- 스프링 배치 공식문서
- 스프링 배치 메타 테이블
- JobExecutionAlreadyRunningException
- multi update
- 스프링 리액티브 프로그래밍
- org.json
- spring reactive programming
- 폐기하기
- 스프링 웹플럭스
- date_format
- nonblocking
- 마리아디비
- JSON 분할
- JSON 분리
- spring webflux
- ChainedTransactionManager #분산데이터베이스 #Spring Boot #MyBatis
- jar 소스보기
- git stage
- str_to_date
- JSONObject 분할
- 마이바티스 트랜잭션
Archives
- Today
- Total
ebson
파이썬 자료구조 예제문제 (3) 본문
아래 코드는 Udemy 알고리즘 코딩 테스트 입문부터 합격까지 (Feat. 컴공선배 알고리즘캠프) 강의 섹션 3: PART 2. 알고리즘 유형 분석 - 자료구조, 12강 Chapter1. 자료구조 - 예제문제 (3) 내용을 요약한 코드입니다.
# 예제문제 (3)
# boj.kr/11286 절댓값 힙
# 우선순위 큐
import heapq as hq
import sys
input = sys.stdin.readline
pq = []
for _ in range(int(input())):
x = int(input())
if x:
hq.heappush(pq, (abs(x), x))
else:
print(hq.heappop(pq)[1] if pq else 0)
import heapq as hq
import sys
input = sys.stdin.readline
min_heap = []
max_heap = []
for _ in range(int(input())):
x = int(input())
if x:
if x > 0:
hq.heappush(min_heap, x)
else:
hq.heappush(max_heap, -x)
else:
if min_heap:
if max_heap:
if min_heap[0] < abs(-max_heap[0]):
print(hq.heappop(min_heap))
else:
print(-hq.heappop(max_heap))
else:
print(hq.heappop(min_heap))
else:
if max_heap:
print(-hq.heappop(max_heap))
else:
print(0)
'ALGORITHM STUDY WITH PYTHON > Theories & basics' 카테고리의 다른 글
파이썬 완전탐색 예제문제 (0) | 2023.02.09 |
---|---|
파이썬 자료구조 예제문제 (4) (0) | 2023.02.08 |
파이썬 자료구조 예제문제 (2) (0) | 2023.02.02 |
파이썬 자료구조 예제문제 (1) (0) | 2023.02.01 |
파이썬 자료구조 (0) | 2023.01.28 |
Comments