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).
new solution update 2022.03.10
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
classSolution { public: intmaxProfit(vector<int>& prices){ int n = prices.size(), res = 0; int coolDownProfit = 0, prevProfit = 0, sellMax = 0; for(int i = n - 1; i >= 0; i--) { int tmp = prevProfit; prevProfit = max(prevProfit, sellMax - prices[i]); sellMax = max(sellMax, coolDownProfit + prices[i]); res = max(res, prevProfit); coolDownProfit = tmp; } return res; } };