Files
cpp-flashcards/org/study_deck_02/dsa/2-d-dynamic-programming/0309-best-time-to-buy-and-sell-stock-with-cooldown.org
T

58 lines
1.3 KiB
Org Mode
Raw Normal View History

2026-06-01 18:12:40 +08:00
#+ANKI_DECK: study_deck_02
* TODO 0309. Best Time to Buy And Sell Stock With Cooldown :medium:
:PROPERTIES:
:NEETCODE: [[file:../../roadmap.org::*0309. Best Time to Buy And Sell Stock With Cooldown][0309. Best Time to Buy And Sell Stock With Cooldown]]
:END:
You are given an array ~prices~ where ~prices[i]~ is the price of a given stock on the ~i^{th}~ 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:*
#+begin_src
Input: prices = [1,2,3,0,2]
Output: 3
Explanation: transactions = [buy, sell, cooldown, buy, sell]
#+end_src
*Example 2:*
#+begin_src
Input: prices = [1]
Output: 0
#+end_src
*Constraints:*
- ~1 <= prices.length <= 5000~
- ~0 <= prices[i] <= 1000~
** TODO Approach
Write your approach here.
** TODO Python
2026-06-05 22:32:49 +08:00
#+begin_src python :lc-problem 309 :lc-lang python3
class Solution:
def maxProfit(self, prices: List[int]) -> int:
#+end_src
** TODO C++
2026-06-05 22:32:49 +08:00
#+begin_src cpp :lc-problem 309
class Solution {
public:
int maxProfit(vector<int>& prices) {
}
};
#+end_src