Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
143737 | 陈家宝 | 油桶问题 | C++ | 通过 | 100 | 0 MS | 296 KB | 349 | 2024-04-18 13:24:32 |
#include<bits/stdc++.h> using namespace std; int a[2000],f[2000][2000],n,m; int main(){ cin>>n>>m; for(int i=1;i<=n;i++)cin>>a[i]; for(int j=0;j<=n;j++)for(int i=1;i<=m;i++)f[j][i]=i; for(int i=1;i<=n;i++)for(int j=0;j<=m;j++)if(j>=a[i])f[i][j]=min(f[i-1][j],f[i-1][j-a[i]]); if(f[n][m]==0)cout<<"yes"; else cout<<"no"; return 0; }