| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 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 |
Tags
- 화상영어
- 개발자
- 프로젝트
- 잡생각
- English
- 미드시청
- 30분
- 스탭퍼
- Daily Challenge
- 리얼 클래스
- FIT XR
- 10분
- realclass
- 매일
- 3줄정리
- 만화도
- 사이드
- 영어원서읽기
- 영어공부
- 괜찮음
- 읽기
- 뭐든
- 운동
- leetcode
- 월간
- Problem Solving
- 쓰릴오브파이트
- 링피트
- Writing
- 파비최
Archives
- Today
- Total
파비의 매일매일 공부기록
2023.02.24 Today's Challenge 본문
https://leetcode.com/problems/minimize-deviation-in-array/
Minimize Deviation in Array - LeetCode
Can you solve this real interview question? Minimize Deviation in Array - You are given an array nums of n positive integers. You can perform two types of operations on any element of the array any number of times: * If the element is even, divide it by 2.
leetcode.com
ㅠㅠ 어제 못해서 streak가 깨져버림 ㅠㅠ
Priority Queue를 활용해서 푸는 문제
class Solution:
def minimumDeviation(self, nums: List[int]) -> int:
if not nums:
return float('inf')
evens = []
min_val = float('inf')
for num in nums:
if num % 2 == 0:
heapq.heappush(evens, -num)
min_val = min(num, min_val)
else:
heapq.heappush(evens, -num * 2)
min_val = min(num * 2, min_val)
res = float('inf')
while evens[0] % 2 == 0:
max_val = -heapq.heappop(evens)
res = min(res, max_val - min_val)
new_num = max_val // 2
heapq.heappush(evens, -new_num)
min_val = min(new_num, min_val)
res = min(-evens[0] - min_val, res)
return res반응형
'Problem Solving > LeetCode' 카테고리의 다른 글
| 2023.02.26 Today's Challenge (0) | 2023.02.26 |
|---|---|
| 2023.02.25 Today's Challenge (0) | 2023.02.25 |
| 2023.02.23 Today's Challenge (0) | 2023.02.23 |
| 2023.02.22 Today's Challenge (0) | 2023.02.22 |
| 2023.02.21 Today's Challenge (0) | 2023.02.21 |
Comments