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
- binary search
- python Leetcode
- 파이썬릿코드풀기
- 파이썬알고리즘풀기
- 릿코드 파이썬
- 파이썬 릿코드
- LeetCode
- python priority queue
- 알고리즘풀이
- python sorted
- 릿코드풀기
- 코틀린기초
- 파이썬알고리즘
- 릿코드
- python xor
- 파이썬 알고리즘
- 알고리즘풀기
- leetcode풀기
- 잇츠디모
- 릿코드 풀기
- python zip_longest
- 상가수익률계산기
- python 릿코드
- leetcode풀이
- leetcode 풀기
- 파이썬릿코드
- 파이썬 알고리즘 풀기
- 릿코드풀이
- python 알고리즘
- 파이썬 프로그래머스
Archives
- Today
- Total
소프트웨어에 대한 모든 것
LeetCode 풀기 - 121. Best Time to Buy and Sell Stock 본문
반응형
121. Best Time to Buy and Sell Stock
https://leetcode.com/problems/best-time-to-buy-and-sell-stock/
문제)
솔루션1) Bruete-Force
Brute-force 방식으로 풀면 시간 초과가 발생하네요.
시간 복잡도 : O(n^2)
# Time Limit Exceeded
class Solution:
def maxProfit(self, prices: List[int]) -> int:
max_profit = 0
for i in range(len(prices)):
for j in range(i+1, len(prices)):
max_profit = max(max_profit, prices[j]-prices[i])
return max_profit
솔루션2) max price 계산
솔루션1은 O(n^2)이기 때문에 시간 초과가 발생합니다.
이를 줄여합니다.
현재 산 가격에서 가격이 최대인 날을 배열의 끝까지 찾는데, 이를 줄이는 방법이 필요합니다.
가격이 최대인 날을 미리 계산 해 놓은면 어떨까???
가격:
prices = [7, 1, 5, 3, 6, 4]
가격이 최대:
max_prices = [7, 6, 6, 6, 6, 4]
그렇다면 max_prices[i] - prices[i] 빼면 i day에 최대 수익을 찾을 수 있네요
시간 복잡도 : O(2n)
class Solution:
def maxProfit(self, prices: List[int]) -> int:
# 가격을 뒤에서 부터 max 값 찾기
# ex) [7, 6, 6, 6, 6, 4]
max_prices = prices[::-1]
for i in range(1, len(max_prices)):
max_prices[i] = max(max_prices[i-1], max_prices[i])
max_prices.reverse()
# 최대 이익을 계산
max_profit = 0
for a, b in zip(prices, max_prices):
max_profit = max(max_profit, b-a)
return max_profit
솔루션3) left, right index
discuss에서 솔루션을 살펴보니 더 직관적이고 빠르게 푸는 방법이 있네요.
left, right 두 인덱스를 유지하고 left 인덱스에서는 사고, right 인덱스에서는 파는 것입니다.
left, rigt 인덱스는 price에 따라서 위치를 이동 시킵니다.
Buy | Sell | profit |
7 | 1 | -6 |
1 | 5 | 4 |
1 | 3 | 2 |
1 | 6 | 5 |
1 | 4 | 3 |
시간복잡도 : O(n)
class Solution:
def maxProfit(self, prices: List[int]) -> int:
# buy index
left = 0
# sell index
right = 1
max_profit = 0
while right < len(prices):
max_profit = max(max_profit, prices[right] - prices[left])
if prices[left] < prices[right]:
right += 1
else:
left = right
right = left + 1
return max_profit
솔루션4) Kadane's Algorithm
카데인 알고리즘을 활용한 풀이 기법입니다.
시간복잡도 : O(n)
class Solution:
def maxProfit(self, prices: List[int]) -> int:
# Kadane's Algorithm
max_profit = 0
cur_sum = 0
for i in range(len(prices)-1):
cur_sum += prices[i+1] - prices[i]
if cur_sum < 0:
cur_sum = 0
max_profit = max(max_profit, cur_sum)
return max_profit
함께 보면 좋은 글:
2021.11.30 - [알고리즘/LeetCode] - LeetCode 풀기 - 53. Maximum Subarray
반응형
'알고리즘 > LeetCode' 카테고리의 다른 글
LeetCode 풀기 - 347. Top K Frequent Elements (0) | 2022.02.25 |
---|---|
LeetCode 풀기 - 165. Compare Version Numbers (0) | 2022.02.25 |
LeetCode 풀기 - 215. Kth Largest Element in an Array (0) | 2022.02.24 |
LeetCode 풀기 - 200. Number of Islands (0) | 2022.02.23 |
LeetCode 풀기 - 692. Top K Frequent Words (0) | 2022.02.23 |
Comments