LeetCode 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]

Solution:

int maxProfit(vector& prices) {
        int n = prices.size();
        if(n == 0) return 0;
        vector buy(n), sell(n);
        buy[0] = -prices[0];
        sell[0] = 0;
        for(int i = 1; i 1? sell[i-2]: 0) - prices[i]);
            sell[i] = max(sell[i-1], buy[i-1] + prices[i]);
        }
        return sell[n-1];
    }

滚动数组(运行时间会变长):

int maxProfit(vector& prices) {
        int n = prices.size();
        if(n == 0) return 0;
        int b0 = -prices[0], b1 = b0;
        int s0 = 0, s1 = 0, s2 = 0;
        for(int i = 1; i

参考资料
https://leetcode.com/problems/best-time-to-buy-and-sell-stock-with-cooldown/discuss/75931/Easiest-JAVA-solution-with-explanations

你可能感兴趣的:(LeetCode Best Time to Buy and Sell Stock With Cooldown)