Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
116218 | 毛泓博(做题专用,大号Fess) | 最佳买卖股票时机含冷冻期 | C++ | 解答错误 | 75 | 0 MS | 252 KB | 441 | 2023-12-16 09:19:34 |
#include<bits/stdc++.h> using namespace std; int main() { int n,prices[1005]; cin>>n; int buy[1005]={0},sell[1005]={0},freeze[1005]={0}; for(int i=1;i<=n;i++) cin>>prices[i]; buy[0]=-prices[0]; for(int i=1;i<=n;i++) { buy[i]=max(buy[i-1],freeze[i-1]-prices[i]); sell[i]=max(sell[i-1],buy[i-1]+prices[i]); freeze[i]=max(freeze[i-1],sell[i-1]); } cout<<max(sell[n-1],freeze[n-1]); }