Medium
,Array
,DP
309. Best Time to Buy and Sell Stock with Cooldown
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:
Note: You may not engage in multiple transactions simultaneously (i.e., you must sell the stock before you buy again).
Example 1:
Example 2:
Constraints:
prices.length
<= 5000prices[i]
<= 1000Yen-Chi ChenFri, Dec 23, 2022
Yen-Chi ChenFri, Dec 23, 2022
Yen-Chi ChenMon, Dec 26