-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy path309.best-time-to-buy-and-sell-stock-with-cooldown.cpp
70 lines (61 loc) · 1.68 KB
/
309.best-time-to-buy-and-sell-stock-with-cooldown.cpp
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
61
62
63
64
65
66
67
68
69
70
// 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 {
public:
int maxProfit(vector<int>& prices) {
int n = prices.size();
vector<int> buy(n + 1, INT_MIN);
vector<int> sell(n + 1, 0);
vector<int> rest(n + 1, 0);
for (int i = 1; i <= n; i++) {
int 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 {
public:
int maxProfit(vector<int>& prices) {
int n = prices.size();
int buy = INT_MIN;
int sell = 0;
int rest = 0;
for (auto p: prices) {
buy = max(buy, rest - p);
rest = sell;
sell = max(sell, buy + p);
}
return sell;
}
};