Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
108651 林扬泉 拆分自然数 C++ 通过 100 246 MS 264 KB 520 2023-11-04 09:10:08

Tests(5/5):


#include<bits/stdc++.h> using namespace std; int a[10001]={1},n,total; int print(int t){ cout<<n<<"="; for(int i=1;i<t;i++){ cout<<a[i]<<"+"; } cout<<a[t]<<endl; total++; } int dfs(int cur,int t){ int i; for(i=a[t-1];i<=cur;i++){ if(i<n){ a[t]=i; cur-=i; if(cur==0){ print(t); } else{ dfs(cur,t+1); } cur+=i; } } } int main(){ //freopen("split.in","r",stdin); //freopen("split.out","w",stdout); cin>>n; dfs(n,1); cout<<total; return 0; }


测评信息: