309. Best Time to Buy and Sell Stock with Cooldown

Posted CodesKiller

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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:

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

此题有点偏难,先上代码:

public class Solution {

    public int maxProfit(int[] prices) {

        int pre_buy = 0;

        int pre_sell = 0;

        int buy = Integer.MIN_VALUE;

        int sell = 0;

        for(int i=0;i<prices.length;i++){

            pre_buy = buy;

            buy = Math.max(pre_buy,pre_sell-prices[i]);

            pre_sell = sell;

            sell = Math.max(pre_sell,pre_buy+prices[i]);

        }

        return sell;

    }

理由如下:

 

buy[i] = Math.max(buy[i-1],sell[i-2]-prices[i]);

sell[i] = Math.max(sell[i-1],buy[i-1]+prices[i]);

其中,sell[i-2]-prices[i]里面,i-1操作为cooldown的时间,就有了如上的代码。

 

以上是关于309. Best Time to Buy and Sell Stock with Cooldown的主要内容,如果未能解决你的问题,请参考以下文章

309. Best Time to Buy and Sell Stock with Cooldown

309. Best Time to Buy and Sell Stock with Cooldown

[动态规划] leetcode 309 Best Time to Buy and Sell Stock with Cooldown

leetcode 309. Best Time to Buy and Sell Stock with Cooldown

算法: 冷却时间买卖股票的最佳时机309. Best Time to Buy and Sell Stock with Cooldown

算法: 加冷冻期时间的买卖股票309. Best Time to Buy and Sell Stock with Cooldown