1 Star 0 Fork 1

陈鹏/leecode with labuladong

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
309.最佳买卖股票时机含冷冻期.cpp 649 Bytes
一键复制 编辑 原始数据 按行查看 历史
陈鹏 提交于 2022-07-21 17:54 . 股票买卖
/*
* @lc app=leetcode.cn id=309 lang=cpp
*
* [309] 最佳买卖股票时机含冷冻期
*/
// @lc code=start
class Solution {
public:
int maxProfit(vector<int>& prices) {
int n = prices.size();
if (n == 1) return 0;
vector<int> dp(2);
dp[0] = max(0, prices[1] - prices[0]);
dp[1] = max(- prices[0], - prices[1]);
int dp_pre = 0;
for (int i = 2; i < n; ++i) {
int tmp = dp[0];
dp[0] = max(dp[0], dp[1] + prices[i]);
dp[1] = max(dp[1], dp_pre - prices[i]);
dp_pre = tmp;
}
return dp[0];
}
};
// @lc code=end
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/Chan1998/leecode-with-labuladong.git
git@gitee.com:Chan1998/leecode-with-labuladong.git
Chan1998
leecode-with-labuladong
leecode with labuladong
master

搜索帮助