Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
106241 | 毛泓博(做题专用,大号Fess) | 油桶问题 | C++ | 解答错误 | 83 | 24 MS | 248 KB | 312 | 2023-10-10 13:45:01 |
#include<bits/stdc++.h> using namespace std; int n,m,a[101]; void dfs(int step,int r,int k) { if(r==m) { cout<<"yes"; exit(0); } for(int i=k;i<=n;i++) { dfs(step+1,r+a[i],k+1); } } int main() { cin>>n>>m; for(int i=1;i<=n;i++) cin>>a[i]; dfs(0,0,1); cout<<"no"; return 0; }