Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
113335 朱悦晨 分割等和子集 C++ 通过 100 0 MS 260 KB 471 2023-12-02 09:38:46

Tests(3/3):


#include<bits/stdc++.h> using namespace std; const int N = 105, M = 20010; int m,n,f[M],v[N],w[N],s=0; int main() { cin>>n; for(int i=1;i<=n;i++){ cin>>v[i]; w[i] = v[i]; s += w[i]; } if( s % 2 != 0 ){ cout<<"false"; return 0; } m = s / 2; for(int i=1;i<=n;i++){ for(int j=m;j>=0;j--){ if(j >= w[i]){ f[j] = max(f[j] , f[j-w[i]] + v[i]); } } } if(f[m] == s / 2) cout<<"true"; else cout<<"false"; return 0; }


测评信息: