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

最多两次股票交易-Best Time to Buy and Sell Stock III

时间:2015-09-22 23:12:37      阅读:204      评论:0      收藏: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 at most two transactions.(股票交易,最多两次)

Note:
You may not engage in multiple transactions at the same time (ie, you must sell the stock before you buy again).

 

class Solution {
public:
    int maxProfit(vector<int> &prices) {
        if(prices.size()==0)return 0;
        int n=prices.size();
        vector<int> left(n);
        vector<int> right(n);
        int min=prices[0];
        int max=prices[n-1];
        int res=0;
        for(int i=1;i<n;i++)
        {
            min=min<prices[i]?min:prices[i];
            left[i]=left[i-1]>(prices[i]-min)?left[i-1]:(prices[i]-min);
        }
        for(int j=n-2;j>=0;j--)
        {
            max=max>prices[j]?max:prices[j];
            right[j]=right[j+1]>(max-prices[j])?right[j+1]:(max-prices[j]);
        }
        for(int i=0;i<n;i++)
        {
            res=res>(left[i]+right[i])?res:(left[i]+right[i]);
        }
        return res;
    }
};

  

最多两次股票交易-Best Time to Buy and Sell Stock III

标签:

原文地址:http://www.cnblogs.com/Vae1990Silence/p/4830586.html

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