Appearance
122.买卖股票的最佳时机-ii
题解
js
/**
* @param {number[]} prices
* @return {number}
*/
var maxProfit = function (prices) {
const dp = Array.from(new Array(prices.length), () => [0, 0]);
dp[0] = [-prices[0], 0];
for (let i = 1; i < prices.length; i++) {
// 当天持有 = max(之前持有保持原状,之前未持有 但是当天买入)
dp[i][0] = Math.max(dp[i - 1][0], dp[i - 1][1] - prices[i]);
// 当天未持有 = max(之前未持有 保持现状, 之前持有 但是当天卖掉)
dp[i][1] = Math.max(dp[i - 1][1], dp[i - 1][0] + prices[i]);
}
return dp[prices.length - 1][1];
};
/**
* @param {number[]} prices
* @return {number}
*/
var maxProfit = function (prices) {
const dp = Array.from(new Array(prices.length), () => [0, 0]);
dp[0] = [-prices[0], 0];
for (let i = 1; i < prices.length; i++) {
// 当天持有 = max(之前持有保持原状,之前未持有 但是当天买入)
dp[i][0] = Math.max(dp[i - 1][0], dp[i - 1][1] - prices[i]);
// 当天未持有 = max(之前未持有 保持现状, 之前持有 但是当天卖掉)
dp[i][1] = Math.max(dp[i - 1][1], dp[i - 1][0] + prices[i]);
}
return dp[prices.length - 1][1];
};