Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
106264 毛泓博(做题专用,大号Fess) 油桶问题 C++ 运行超时 66 2006 MS 252 KB 291 2023-10-10 13:53:56

Tests(4/6):


#include<bits/stdc++.h> using namespace std; int n,m,a[101]; void dfs(int r,int k) { if(r==m) { cout<<"yes"; exit(0); } int i=k; while(r+a[i]<=m) dfs(r+a[i++],k+1); } int main() { cin>>n>>m; for(int i=1;i<=n;i++) cin>>a[i]; dfs(0,1); cout<<"no"; return 0; }


测评信息: