0122. Best Time to Buy and Sell Stock II
Easy | Array + DP + Greedy | 60ms (75.11%), 15.1 MB (21.82%)
Input: prices = [7,1,5,3,6,4]
Output: 7
Explanation: Buy on day 2 (price = 1) and sell on day 3 (price = 5), profit = 5-1 = 4.
Then buy on day 4 (price = 3) and sell on day 5 (price = 6), profit = 6-3 = 3.
Input: prices = [1,2,3,4,5]
Output: 4
Explanation: Buy on day 1 (price = 1) and sell on day 5 (price = 5), profit = 5-1 = 4.
Note that you cannot buy on day 1, buy on day 2 and sell them later, as you are engaging multiple transactions at the same time. You must sell before buying again.
Input: prices = [7,6,4,3,1]
Output: 0
Explanation: In this case, no transaction is done, i.e., max profit = 0.class Solution:
def maxProfit(self, prices: List[int]) -> int:
# (base case)
if len(prices) == 0 or len(prices) == 1: return 0
# ==================================================
# Array + Dynamic Programming (FSM) =
# ==================================================
# time : O(n)
# space : O(1)
hold, noHold = float('-inf'), 0
for element in prices:
preHold, preNoHold = hold, noHold
# HOLD state
# (1) no further action in HOLD state
# (2) BUY at NO-HOLD state
hold = max(preHold, preNoHold - element)
# NO-HOLD state
# (1) no further action in NO-HOLD state
# (2) SELL at HOLD state
noHold = max(preNoHold, preHold + element)
# (HOLD state does not have MAX profit)
return noHoldLast updated