Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
106270 毛泓博(做题专用,大号Fess) 油桶问题 C++ 解答错误 66 0 MS 256 KB 293 2023-10-10 13:57:30

Tests(4/6):


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


测评信息: