-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy path309.best-time-to-buy-and-sell-stock-with-cooldown.py
60 lines (53 loc) · 1.6 KB
/
309.best-time-to-buy-and-sell-stock-with-cooldown.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
# Tag: Array, Dynamic Programming
# Time: O(N)
# Space: O(N)
# Ref: -
# Note: -
# You are given an array prices where prices[i] is the price of a given stock on the ith day.
# Find the maximum profit you can achieve. You may complete as many transactions as you like (i.e., buy one and sell one share of the stock multiple times) with the following restrictions:
#
# After you sell your stock, you cannot buy stock on the next day (i.e., cooldown one day).
#
# Note: You may not engage in multiple transactions simultaneously (i.e., you must sell the stock before you buy again).
#
# Example 1:
#
# Input: prices = [1,2,3,0,2]
# Output: 3
# Explanation: transactions = [buy, sell, cooldown, buy, sell]
#
# Example 2:
#
# Input: prices = [1]
# Output: 0
#
#
# Constraints:
#
# 1 <= prices.length <= 5000
# 0 <= prices[i] <= 1000
#
#
class Solution:
def maxProfit(self, prices: List[int]) -> int:
n = len(prices)
buy = [float('-inf') for i in range(n + 1)]
sell = [0 for i in range(n + 1)]
rest = [0 for i in range(n + 1)]
for i in range(1, n + 1):
p = prices[i - 1]
buy[i] = max(buy[i - 1], rest[i - 1] - p)
rest[i] = sell[i - 1]
sell[i] = max(sell[i - 1], buy[i] + p)
return sell[n]
class Solution:
def maxProfit(self, prices: List[int]) -> int:
n = len(prices)
buy = float('-inf')
sell = 0
rest = 0
for p in prices:
buy = max(buy, rest - p)
rest = sell
sell = max(sell, buy + p)
return sell