일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 정렬
- DateTime
- KAKAO BLIND RECRUITMENT
- 프로그래머스
- divmod
- programmers
- 동적 계획법
- 이분탐색
- 재귀함수
- 그리디
- 카카오
- BFS
- lambda
- 다익스트라
- 자바
- backjoon
- 추석맞이 코딩챌린지
- Combinations
- Zip
- Re
- python
- Set
- 파이썬
- heapq
- 수학
- 위클리 챌린지
- dfs
- 정규식
- 백준
- java
Archives
- Today
- Total
상상쓰
[백준] 보석 도둑 본문
https://www.acmicpc.net/problem/1202
이 문제의 알고리즘 분류가 정렬 또는 우선순위 큐가 있어서 heapq 와 sort() 로 오름차순으로 정렬하였다.
작은 가방에 들어갈 수 있는 보석은 큰 가방에 당연히 들어가기 때문이다. 오름차순으로 가방에 넣을 수 있는 보석의 가격을 price 에 놓고 heapq 와 '-' 부호를 이용하여 절댓값이 가장 큰 가격을 answer 에 더한다.
import sys, heapq
N, K = map(int, sys.stdin.readline().split())
jewelry = []
bags = []
price = []
answer = 0
for i in range(N):
heapq.heappush(jewelry, list(map(int, sys.stdin.readline().split())))
for i in range(K):
bags.append(int(sys.stdin.readline()))
bags.sort()
for i in bags:
while jewelry and i >= jewelry[0][0]:
heapq.heappush(price, -1 * heapq.heappop(jewelry)[1])
if price:
answer -= heapq.heappop(price)
else:
if not jewelry:
break
print(answer)
'Coding Test' 카테고리의 다른 글
[프로그래머스] 매칭 점수 (0) | 2021.06.22 |
---|---|
[백준] 수리공 항승 (0) | 2021.06.22 |
[프로그래머스] 스타 수열 (0) | 2021.06.18 |
[프로그래머스] 도둑질 (0) | 2021.06.17 |
[백준] 저울 (0) | 2021.06.17 |
Comments