马上注册,结交更多好友,享用更多功能^_^
您需要 登录 才可以下载或查看,没有账号?立即注册
x
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 as many transactions as you like (ie, buy one and sell one share of the stock multiple times) with the following restrictions:
You may not engage in multiple transactions at the same time (ie, you must sell the stock before you buy again).
After you sell your stock, you cannot buy stock on next day. (ie, cooldown 1 day)
Example:
Input: [1,2,3,0,2]
Output: 3
Explanation: transactions = [buy, sell, cooldown, buy, sell]
class Solution:
def maxProfit(self, prices: List[int]) -> int:
hold, sold, cooldown = -math.inf, 0, 0
for price in prices:
hold_tmp, sold_tmp, cooldown_tmp = hold, sold, cooldown
hold = max(hold_tmp, cooldown_tmp - price)
sold = hold_tmp + price
cooldown = max(cooldown_tmp, sold_tmp)
return max(hold, sold, cooldown)
|