博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
leetcode—Best Time to Buy and Sell stocks III
阅读量:6069 次
发布时间:2019-06-20

本文共 2698 字,大约阅读时间需要 8 分钟。

1.题目描述

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).

2.解法分析

限定了交易次数之后题目就需要我们略微思考一下了,由于有两次交易的机会,那么我们选定一个时间点ti,将此时间点作为两次交易的支点的话,必然有:

      t0….ti之内满足最佳交易原则,ti-tn天也满足最佳交易原则,那么这就是一个动态规划的策略了,于是有下面的代码:

 

class Solution {
public:
int maxProfit(vector
&prices) {
// Start typing your C/C++ solution below
// DO NOT write int main() function
if(prices.size() <=1)return 0;
vector
::iterator iter;
 
 
for(iter=prices.begin();iter!=prices.end()-1;++iter)
{
*iter = *(iter+1) - *iter;
}
 
prices.pop_back();
 
vector
accum_forward;
vector
accum_backward;
 
int max = 0;
int subMax = 0;
 
for(iter=prices.begin();iter!=prices.end();++iter)
{
subMax += *iter;
if(subMax > max)max=subMax;
else
if(subMax<0)subMax = 0;
 
accum_forward.push_back(max);
}
 
vector
::reverse_iterator riter;
 
max =0 ;
subMax = 0;
for(riter=prices.rbegin();riter!=prices.rend();++riter)
{
subMax +=*riter;
if(subMax >max)max = subMax;
else
if(subMax<0)subMax=0;
 
accum_backward.push_back(max);
}
 
max =0;
int len = accum_forward.size();
for(int i=0;i
{
if((accum_forward[i]+accum_backward[len-i-2])>max)
max = accum_forward[i]+accum_backward[len-i-2];
}
 
return max>accum_forward[len-1]?max:accum_forward[len-1];
 
}
};

 

ps:做完题之后提交,发现老是AC不了,有个case总是解决不了,本来以为是自己代码写得有问题,检查了半天没发现错误,于是开始看别人怎么写,结果发现别人AC的代码也过不了,猜想可能系统还是做得不完善,应该是后台的线程相互干扰了,过了一段时间果然同样的代码又可以AC了。在这段过程中,看别人写的代码,发现了一个比我简洁一些的写法,虽然我么你的复杂度是一样的,但是此君代码量比我的小一点,以后学习学习,另外,一直不知道vector还可以预先分配大小,从这个代码里面也看到了,算是有所收获。附代码如下:

class Solution {
public:
int maxProfit(vector
&prices) {
// null check
int len = prices.size();
if (len==0) return 0;
 
vector
historyProfit;
vector
futureProfit;
historyProfit.assign(len,0);
futureProfit.assign(len,0);
int valley = prices[0];
int peak = prices[len-1];
int maxProfit = 0;
 
// forward, calculate max profit until this time
for (int i = 0; i
{
valley = min(valley,prices[i]);
if(i>0)
{
historyProfit[i]=max(historyProfit[i-1],prices[i]-valley);
}
}
 
// backward, calculate max profit from now, and the sum with history
for (int i = len-1; i>=0; --i)
{
peak = max(peak, prices[i]);
if (i
{
futureProfit[i]=max(futureProfit[i+1],peak-prices[i]);
}
maxProfit = max(maxProfit,historyProfit[i]+futureProfit[i]);
}
return maxProfit;
}
 
};

转载于:https://www.cnblogs.com/obama/p/3250251.html

你可能感兴趣的文章
springboot-5-整合jpa
查看>>
40个新鲜的 jQuery 插件,使您的网站用户友好
查看>>
Android Studio设置图片背景及主题设置
查看>>
mysql function动态执行不同sql语句
查看>>
maven docker plugin 常见问题解决
查看>>
linux下查看各硬件型号
查看>>
仿&lt;赶集生活&gt;client启动动画效果
查看>>
HBase表的架构原理
查看>>
C#加减乘除
查看>>
蓝牙通讯神器
查看>>
spring boot 1.5.2 操作mongodb3.4.0
查看>>
互联网支付系统整体架构详解(转)
查看>>
调整代码生成工具Database2Sharp的Winform界面生成,使其易于列表工具栏的使用。...
查看>>
C++ primer 模板与泛型编程
查看>>
哲学的三个终极问题
查看>>
151. [USACO Dec07] 建造路径
查看>>
RPi 3.5寸 电阻屏
查看>>
wcf rest系列文章
查看>>
(转)SpringMVC学习(五)——SpringMVC的参数绑定
查看>>
内敛函数宏定义差别
查看>>