티스토리 뷰
기술(Tech, IT)/리트코드(LeetCode)
[LeetCode] 1167. Minimum Cost to Connect Sticks
Daniel803 2023. 7. 21. 02:39integer로 구성된 sticks라는 input array의 모든 요소를 이어 붙이는 문제다. 이 때 더할 때 마다 발생하는 합이 최소가 되도록 하는 문제다. sorting을 통해 풀이를 해야하나 잠시 생각했지만 Min heap을 사용하면 쉽게 구현이 가능하다.
class Solution:
def connectSticks(self, sticks: List[int]) -> int:
mh = sticks
ret = 0
heapify(mh)
while len(mh) > 1:
m1 = heappop(mh)
m2 = heappop(mh)
sum_ = m1 + m2
ret += sum_
heappush(mh, sum_)
return ret
반응형
'기술(Tech, IT) > 리트코드(LeetCode)' 카테고리의 다른 글
[LeetCode] 2026. Low-Quality Problems (0) | 2023.07.30 |
---|---|
[LeetCode] 2520. Count the Digits That Divide a Number (0) | 2023.07.29 |
[LeetCode] 1166. Design File System (0) | 2023.07.20 |
[LeetCode] 1165. Single-Row Keyboard (0) | 2023.07.19 |
[LeetCode] 1151. Minimum Swaps to Group All 1's Together (0) | 2023.07.18 |
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- defaultdict
- socket programming
- 투 포인터
- I2C
- 티스토리챌린지
- The Economist Espresso
- 머신 러닝
- machine learning
- min heap
- tf-idf
- Computer Graphics
- vertex shader
- DICTIONARY
- Hash Map
- Android
- 오블완
- 안드로이드
- java
- ml
- 이코노미스트 에스프레소
- join
- C++
- Python
- leetcode
- 딕셔너리
- 리트코드
- The Economist
- 소켓 프로그래밍
- 이코노미스트
- 파이썬
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함
반응형