題目:spa
Say you have an array for which the ith element is the price of a given stock on day i..net
Design an algorithm to find the maximum profit. You may complete at most two transactions.code
Note:
You may not engage in multiple transactions at the same time (ie, you must sell the stock before you buy again).blog
題解:
ip
根據題目要求,最多進行兩次買賣股票,並且手中不能有2只股票,就是不能連續兩次買入操做。element
因此,兩次交易必須是分佈在2各區間內,也就是動做爲:買入賣出,買入賣出。it
進而,咱們能夠劃分爲2個區間[0,i]和[i,len-1],i能夠取0~len-1。io
那麼兩次買賣的最大利潤爲:在兩個區間的最大利益和的最大利潤。class
一次劃分的最大利益爲:Profit[i] = MaxProfit(區間[0,i]) + MaxProfit(區間[i,len-1]);
im
最終的最大利潤爲:MaxProfit(Profit[0], Profit[1], Profit[2], ... , Profit[len-1])。
代碼以下:
Reference:
http://blog.csdn.net/u013027996/article/details/19414967