标签:需要 end 要求 problem style col c++ 两种 ali
AC代码
#include<bits/stdc++.h> using namespace std; int n,m,s,a[11]; void dfs(int x){ if(x==0){ s++;return; } for(int i=0;i<n;++i){ if(a[i]){ a[i]--; dfs(x-1); a[i]++; } } } int main(){ while(cin>>n>>m) { s=0; for(int i=0;i<n;i++) { scanf("%d",&a[i]); } dfs(m); cout<<s<<endl; } return 0; }
dfs 如果只要求找到解,不需要回溯
如果需要找出所有解则需要
标签:需要 end 要求 problem style col c++ 两种 ali
原文地址:https://www.cnblogs.com/m2364532/p/12331210.html