Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
20740 | 孙文谦 | 自然数的拆分 | C++ | 解答错误 | 0 | 0 MS | 268 KB | 828 | 2021-06-19 21:12:24 |
#include<iostream> #include<cstdio> #include<cstdlib> using namespace std; int a[10001]={1},n,toal; //此处初始值赋值1有深意 自行体会 int search(int ,int); int print(int); int main() { cin>>n; search(n,1); cout<<"toal="<<toal<<endl; } int search(int s,int t) { int i; for(i=a[t-1];i<=s;i++) //当前数i要大于前一位数,并且不超过n if(i<n) { a[t]=i; //保留当前拆分的数 s-=i; //s减去i剩下的值继续拆分 if(s==0) //s等于0时结束拆分 输出结果 print(t); else search(s,t+1); //s>0继续递归 s+=i; //回溯 加上拆分的数 ,以便能产生所有可能的拆分 } } int print(int t) { cout<<n<<"="; for(int i=1;i<=t-1;i++) cout<<a[i]<<"+"; cout<<a[t]<<endl; toal++;//方案数累加1 }