309. Best Time to Buy and Sell Stock with Cooldown

Medium (Trung bình) Python 🔗 Xem trên LeetCode

📋 Đề Bài

You are given an array prices where prices[i] is the price of a given stock on the ith day.

Find the maximum profit you can achieve. You may complete as many transactions as you like (i.e., buy one and sell one share of the stock multiple times) with the following restrictions:

  • After you sell your stock, you cannot buy stock on the next day (i.e., cooldown one day).

Note: You may not engage in multiple transactions simultaneously (i.e., you must sell the stock before you buy again).

 

Example 1:

Input: prices = [1,2,3,0,2]
Output: 3
Explanation: transactions = [buy, sell, cooldown, buy, sell]

Example 2:

Input: prices = [1]
Output: 0

 

Constraints:

  • 1 <= prices.length <= 5000
  • 0 <= prices[i] <= 1000

🧠 Thuật Toán & Kỹ Thuật

Dynamic Programming (Quy hoạch động)DFS (Tìm kiếm theo chiều sâu)
⏱️ Thời gian O(n)
💾 Không gian O(n)

💻 Lời Giải

Python 0309-best-time-to-buy-and-sell-stock-with-cooldown.py
class Solution:
    def maxProfit(self, prices: List[int]) -> int:
        dp = {}
        n = len(prices)
        
        def dfs(i, isBuy):
            if i >= n:
                return 0
            
            if (i, isBuy) in dp:
                return dp[(i, isBuy)]
            
            if isBuy:
                buy = dfs(i + 1, not isBuy) - prices[i]
                cooldown = dfs(i + 1, isBuy)
                dp[(i, isBuy)] = max(buy, cooldown)
            else:
                sell = dfs(i + 2, not isBuy) + prices[i]
                cooldown = dfs(i + 1, isBuy)
                dp[(i, isBuy)] = max(sell, cooldown)
                
            return dp[(i, isBuy)]
        
        return dfs(0, True)