123. Best Time to Buy and Sell Stock III
problem description
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 (i.e., you must sell the stock before you buy again).
Example 1:
Example 2:
Example 3:
algorithm thought
首先知道这里是最多允许买两次,意思是如果一次可以,那就买一个。就像example 2展示的那样,一次交易即可。那么我们还是以第一题(一次交易得到最大值),为基础解此题。
在一次交易的基础上,在第一次交易的结果上,我们减去当前价格,也就是减去第二次购买的成本。每次遍历都计算此值,得到最大值,也就是第二次购买的最便宜的时候。
然后在上面得到第二次最低成本的情况下,得到第二次的最高利润,每遍历到一个数都记录。
最后这里需要仔细想清楚这里的思想以及代码里是如何进行的。不然很难理解,我个人也是第三次做这个题了,也都需要仔细回味
code
algorithm analysis
一次遍历解决问题,时间复杂度O(n)
Last updated