Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
116232 毛泓博(做题专用,大号Fess) 买卖股票的最佳时机II C++ 解答错误 50 0 MS 244 KB 332 2023-12-16 09:35:09

Tests(2/4):


#include<bits/stdc++.h> using namespace std; int n,m,a[1005]; int lll(int l,int r) { int ans=0; for(int i=l;i<=r;i++) for(int j=i+1;j<=r;j++) ans=max(a[j]-a[i],ans); return ans; } int main() { cin>>n; for(int i=1;i<=n;i++) cin>>a[i]; for(int i=1;i<=n;i++) m=max(m,lll(1,i-1)+lll(i+1,n)); cout<<m; return 0; }


测评信息: