leetcode 309. 最佳买卖股票时机含冷冻期

给定一个整数数组,其中第 i 个元素代表了第 i 天的股票价格 。​

设计一个算法计算出最大利润。在满足以下约束条件下,你可以尽可能地完成更多的交易(多次买卖一支股票):

  • 你不能同时参与多笔交易(你必须在再次购买前出售掉之前的股票)。
  • 卖出股票后,你无法在第二天买入股票 (即冷冻期为 1 天)。

示例:

输入: [1,2,3,0,2]
输出: 3 
解释: 对应的交易状态为: [买入, 卖出, 冷冻期, 买入, 卖出]
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
class Solution(object):
def maxProfit(self, prices):
"""
:type prices: List[int]
:rtype: int
"""
n = len(prices)
if n == 0:return 0
buy = [0]*n
sell = [0]*n
cool = [0]*n
buy[0] = -prices[0]
for i in range(1,n):
buy[i] = max(buy[i-1],cool[i-1]-prices[i])
sell[i] = max(sell[i-1],buy[i-1]+prices[i])
cool[i] = max(cool[i-1],sell[i-1])
return sell[-1]