码迷,mamicode.com
首页 > 其他好文 > 详细

leetcode——123. 买卖股票的最佳时机 III

时间:2020-06-25 19:56:31      阅读:69      评论:0      收藏:0      [点我收藏+]

标签:股票   min   ima   bsp   买卖   mda   tco   技术   思路   

public int maxProfit(int[] prices) {
        int n = prices.length;
        if(n<2){
            return 0;
        }
        int[] f = new int[n];
        int[] g = new int[n];
        for(int i = 1,valley = prices[0];i<n;i++){
            valley = Math.min(valley,prices[i]);
            f[i] = Math.max(f[i-1],prices[i] - valley);
        }
        for(int i = n-2,peak = prices[n-1];i>=0;i--){
            peak = Math.max(peak,prices[i]);
            g[i] = Math.max(g[i],peak-prices[i]);
        }

        int max_profit = 0;
        for(int i = 0;i<n;i++){
            max_profit = Math.max(max_profit,f[i]+g[i]);
        }
        return max_profit;
    }

技术图片

 

 

思路啊思路啊思路啊思路啊

设置valley这点以及peak这点我没能想到……

难过哦。

——2020.6.25

leetcode——123. 买卖股票的最佳时机 III

标签:股票   min   ima   bsp   买卖   mda   tco   技术   思路   

原文地址:https://www.cnblogs.com/taoyuxin/p/13192348.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!