本文共 540 字,大约阅读时间需要 1 分钟。
把自然数N分解为若干个自然数之和,输出方案数。
N,(1≤n≤50)
方案数
5
7
5 可分为
1 1 1 1 1
#include #include using namespace std;int a[1010],n,tot;void dfs(int x,int f){ for(int i=a[f-1];i<=x;i++){ //从前一个开始 if(i
转载于:https://www.cnblogs.com/shenben/p/5574201.html