题目
https://leetcode.com/problems/best-time-to-buy-and-sell-stock-iv/
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 k transactions.
Solution
- global(n, k) 表示前
n
天中一共进行k
次交易,所能获取到的最大收益 - local(n, k) 表示前
n
中一共进行k
次交易,且最后一次卖出发生在第n
天,所能获取的最大收益
于是就有递推式子例如以下:
global(n, k) = max(local(n, k), global(n-1, k));
两种情况:
1,最后一天卖出
2,最后一天没有卖出local(n, k) = max(local(n-1, k)+diff, global(n-1, k-1), global(n-1,k-1)+diff);
三种情况:
1,第n-1
天卖出。而且第n-1
天买入,然后第n
天卖出。那尽管是k+1
次交易,可是最后两次交易能够合并成一次,因此也算是k
次交易
2,前n-1
天内已经进行了k-1
次交易。然后第n
天买入,并卖出
3。前n-1
天内进行了k-1
次交易,然后第n-1
天买入,第n
天卖出