Best Time to Buy and Sell Stock with Cooldown

You are given an array prices where prices[i] is the price of a given stock on the i^th 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
Inputprices = [1,2,3,0,2]
Output3
The optimal sequence is buy, sell, cooldown, buy, sell for a total profit of 3.
Example 2
Inputprices = [1]
Output0
With only one price, no transaction can be completed, so the maximum profit is 0.

Constraints

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

Asked at 8 companies

</>

Your Solution

(Ctrl/Cmd + Enter)

Switching Language

Loading template...

Loading...

Sign in to save your progress

AI code evaluation

Get a correctness verdict, missed edge cases, and complexity analysis of your solution.

Sign in to evaluate