Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
20852 | 杨竣周 | 自然数的拆分 | C++ | 输出超限 | 0 | 0 MS | 260 KB | 348 | 2021-06-20 16:27:38 |
#include<bits/stdc++.h> using namespace std; int a[666666],n; void dfs(int x,int sum,int f){ if(sum>n) return; if(sum==n){ cout<<endl<<n<<'='; for(int i=2;i<=x-1;i++) cout<<'+'<<a[i]; return; } for(int i=f;i>=1;i--){ a[x]=1; dfs(x+1,sum+1,i); } } int main(){ cin>>n; cout<<n<<'='<<n; dfs(1,0,n-1); return 0; }