Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- Baekjoon
- github
- 프로그래머스
- hackerrank
- 자연어처리
- SW Expert Academy
- 편스토랑
- gs25
- programmers
- 데이콘
- Real or Not? NLP with Disaster Tweets
- 캐치카페
- 우분투
- 프로그래머스 파이썬
- leetcode
- Kaggle
- 금융문자분석경진대회
- ubuntu
- AI 경진대회
- PYTHON
- 더현대서울 맛집
- dacon
- Docker
- Git
- ChatGPT
- 맥북
- 코로나19
- 편스토랑 우승상품
- 파이썬
- 백준
Archives
- Today
- Total
솜씨좋은장씨
[Programmers] 힙 : 더 맵게 (Python) 본문
728x90
반응형
1일 1문제 60일차!
오늘의 문제는 프로그래머스의 더 맵게 입니다.
첫번째 시도
def solution(scoville, K):
answer = -1
count = 0
check_flag = False
while min(scoville) < K:
scoville = sorted(scoville, reverse=True)
scoville.append(scoville.pop() + (scoville.pop() * 2) )
if len(scoville) == 1 and scoville[0] < K:
check_flag = True
break
count = count + 1
if check_flag == False:
answer = count
return answer
정확성에서는 제대로 결과가 나왔지만 효율성에서는 시간초과라는 결과가 나왔습니다.
매번 정렬하는 부분에서 시간이 초과 된 것으로 보입니다.
두번째 시도
heapq라는 것을 활용하여 구현해보았습니다.
import heapq
def solution(scoville, K):
answer = -1
count = 0
check_flag = False
heapq_scoville = heapq.heapify(scoville)
while scoville[0] < K:
min_first = heapq.heappop(scoville)
min_second = heapq.heappop(scoville)
heapq.heappush(scoville, min_first + (min_second * 2))
if len(scoville) == 1 and scoville[0] < K:
check_flag = True
break
count = count + 1
if check_flag == False:
answer = count
return answer
'Programming > 코딩 1일 1문제' 카테고리의 다른 글
[BaekJoon] 9465번 : 스티커 (Python) (1) | 2020.04.08 |
---|---|
[HackerRank] Minimum Absolute Difference in an Array (Python) (1) | 2020.04.07 |
[HackerRank] Time Conversion (Python) (0) | 2020.04.05 |
[HackerRank] Birthday Cake Candles (Python) (0) | 2020.04.05 |
[HackerRank] Stack and Queues : A Tale of Two Stacks (0) | 2020.04.04 |
Comments