123. Best Time to Buy and Sell Stock III
123. Best Time to Buy and Sell Stock III
Description
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 at most two transactions .
Note: You may not engage in multiple transactions simultaneously (i.e., you must sell the stock before you buy again).
Example 1:
1 | Input: prices = [3,3,5,0,0,3,1,4] |
Example 3:
1 | Input: prices = [7,6,4,3,1] |
Constraints:
1 <= prices.length <= 10^5
0 <= prices[i] <= 10^5
Hints/Notes
- 2025/02/11 Q2
- dp
- 0x3Fâs solution
Solution
Language: C++
1 | class Solution { |