Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
110972 | 毛泓博(做题专用,大号Fess) | 买卖股票的最佳时机 | C++ | 通过 | 100 | 0 MS | 252 KB | 567 | 2023-11-18 08:37:53 |
#include<bits/stdc++.h> using namespace std; int n,pr[10000],m,t; void dfs(int r,int step) { if(step==n) { if(r>m) m=r; return; } for(int i=1;i<=3;i++) { switch(i) { case 1: { if(!t) { t++; dfs(r-pr[step+1],step+1); t--; } break; } case 2: { if(t) { t--; dfs(r+pr[step+1],step+1); t++; } break; } case 3: dfs(r,step+1); break; } } } int main() { cin>>n; for(int i=1;i<=n;i++) cin>>pr[i]; dfs(0,0); cout<<m; return 0; }