记录编号 |
359648 |
评测结果 |
AAAAAAAAAA |
题目名称 |
分组 |
最终得分 |
100 |
用户昵称 |
kZime |
是否通过 |
通过 |
代码语言 |
C++ |
运行时间 |
0.010 s |
提交时间 |
2016-12-23 21:56:09 |
内存使用 |
9.85 MiB |
显示代码纯文本
#include<iostream>
#include<cstdio>
#include<cstring>
using namespace std;
int n,a[100],s,last;
char str[10000000];
void printf(){
for(int i=0;i<n;i++)sprintf(str+strlen(str),"%d ",a[i]);
sprintf(str+strlen(str),"\n");
}
void dfs(int k){
if(k>=n){
int ans=0;
for(int i=0;i<n;i++)
ans+=a[i];
if(ans==s){
last++;
printf();
}
}
else for(int i=1;i<=s;i++){
if(i>=a[k-1]){
a[k]=i;
dfs(k+1);
}
}
}
int main(){
ios::sync_with_stdio(false);
freopen("dataa.in","r",stdin);
freopen("dataa.out","w",stdout);
cin>>s>>n;
dfs(0);
cout<<last<<endl;
cout<<str;
return 0;
}