1 Star 0 Fork 0

level/jslaobi-leetcode-js

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
0123.BestTimetoBuyandSellStockIII.js 559 Bytes
一键复制 编辑 原始数据 按行查看 历史
jslaobi 提交于 2020-12-26 20:54 . 123. 买卖股票的最佳时机 III
var maxProfit = function (prices) {
if (prices.length === 0) {
return 0;
}
const dp = Array.from(Array(3), () => new Array(prices.length));
for (let i = 0; i < prices.length; i++) {
dp[0][i] = 0;
}
for (let i = 0; i < 3; i++) {
dp[i][0] = 0;
}
for (let i = 1; i < 3; i++) {
let maxProfit = -prices[0];
for (let j = 1; j < prices.length; j++) {
dp[i][j] = Math.max(dp[i][j - 1], prices[j] + maxProfit);
maxProfit = Math.max(maxProfit, dp[i - 1][j] - prices[j]);
}
}
return dp[2][prices.length - 1];
};
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/keiferr/jslaobi-leetcode-js.git
[email protected]:keiferr/jslaobi-leetcode-js.git
keiferr
jslaobi-leetcode-js
jslaobi-leetcode-js
master

搜索帮助