309. Best Time to Buy and Sell Stock with Cooldown

Say you have an array for which the ith element is the price of a given stock on day i.

Design an algorithm to find the maximum profit. You may complete as many transactions as you like (ie, buy one and sell one share of the stock multiple times) with the following restrictions:

  • You may not engage in multiple transactions at the same time (ie, you must sell the stock before you buy again).
  • After you sell your stock, you cannot buy stock on next day. (ie, cooldown 1 day) Example:
    Input: [1,2,3,0,2]
    Output: 3
    Explanation: transactions = [buy, sell, cooldown, buy, sell]
    
    solution (reference): multi-state DP
/**
 * @param {number[]} prices
 * @return {number}
 */
var maxProfit = function(prices) {
  var len = prices.length
  if (len<2) return 0
  var buy=[-prices[0], Math.max(-prices[0], -prices[1])]// buyOrCdInLastDay
  var sell=[0, Math.max(0, prices[1]-prices[0])] // sellOrCdInLasyDay
  for (var i=2;i<len; i++) {
    buy[i] = Math.max(buy[i-1], sell[i-2]-prices[i])
    sell[i] = Math.max(sell[i-1], buy[i-1]+prices[i])
  }
  return Math.max(buy[len-1], sell[len-1], 0)
};

results matching ""

    No results matching ""