Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
116158 毛泓博(做题专用,大号Fess) 打家劫舍II C++ 解答错误 75 0 MS 260 KB 258 2023-12-16 08:51:43

Tests(3/4):


#include<bits/stdc++.h> using namespace std; int n,s1,s2,a[114514]; int main() { cin>>n; for(int i=1;i<=n;i++) cin>>a[i]; for(int i=1;i<=n;i++) { if(i%2==0) s1=max(s1+a[i],s2); else s2=max(s1,s2+a[i]); } cout<<min(s1,s2); return 0; }


测评信息: