记录编号 |
246548 |
评测结果 |
AAAAAAAAAA |
题目名称 |
分组 |
最终得分 |
100 |
用户昵称 |
Ostmbh |
是否通过 |
通过 |
代码语言 |
C++ |
运行时间 |
0.018 s |
提交时间 |
2016-04-06 14:01:08 |
内存使用 |
0.31 MiB |
显示代码纯文本
#include <iostream>
#include <cstdio>
using namespace std;
int n,A[11],m,ans=0,k=0;
void t(int x){
for(int i=1;i<=n;i++){
A[x]=i;
int s=0,ok=1;
for(int j=1;j<=x;j++){
s+=A[j];
}
for(int j=1;j<x;j++)
if(A[j]>A[j+1]){
ok=0;
break;
}
if(s>n)
break;
if(x==m&&s==n&&ok)
ans++;
if(x<m)
t(x+1);
}
}
void t2(int x){
for(int i=1;i<=n;i++){
A[x]=i;
int s=0,ok=1;
for(int j=1;j<=x;j++){
s+=A[j];
}
if(s>n)
break;
for(int j=1;j<x;j++)
if(A[j]>A[j+1]){
ok=0;
break;
}
if(x==m&&s==n&&ok){
for(int i=1;i<=m;i++)
cout<<A[i]<<' ';
cout<<endl;}
if(x<m)
t2(x+1);
}
}
int main(){
freopen("dataa.in","r",stdin);
freopen("dataa.out","w",stdout);
cin>>n>>m;
t(1);
cout<<ans<<endl;
t2(1);
return 0;
}