309. Best Time to Buy and Sell Stock with Cooldown

来源:互联网 发布:永强集团淘宝店是什么 编辑:程序博客网 时间:2024/05/16 06:11

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:

prices = [1, 2, 3, 0, 2]maxProfit = 3transactions = [buy, sell, cooldown, buy, sell]
Solution

https://leetcode.com/discuss/72030/share-my-dp-solution-by-state-machine-thinking

//https://leetcode.com/discuss/72030/share-my-dp-solution-by-state-machine-thinkingpublic int maxProfit(int[] prices) {if(prices == null || prices.length == 0){return 0;}int[] s0 = new int[prices.length];int[] s1 = new int[prices.length];int[] s2 = new int[prices.length];s0[0] = 0;s1[0] = -prices[0];s2[0] = Integer.MIN_VALUE;for(int i = 1; i < prices.length; i++){s0[i] = Math.max(s0[i - 1], s2[i - 1]);s1[i] = Math.max(s0[i - 1] - prices[i], s1[i - 1]);s2[i] = s1[i - 1] + prices[i];}return Math.max(s0[prices.length - 1], s2[prices.length - 1]);}



0 0