美文网首页
LeetCode Best Time to Buy and Se

LeetCode Best Time to Buy and Se

作者: codingcyx | 来源:发表于2018-04-20 17:25 被阅读0次

    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<int>& prices) {
            int n = prices.size();
            if(n == 0) return 0;
            vector<int> buy(n), sell(n);
            buy[0] = -prices[0];
            sell[0] = 0;
            for(int i = 1; i<n; i++){
                buy[i] = max(buy[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<int>& 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<n; i++){
                b0 = max(b1, s2 - prices[i]);
                s0 = max(s1, b1 + prices[i]);
                b1 = b0;
                s2 = s1;
                s1 = s0;
            }
            return s0;
        }
    

    参考资料
    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 Se

          本文链接:https://www.haomeiwen.com/subject/bujzkftx.html