|
- #include<cstdio>
- int n,m;
- int sum=0;
- int book[10001];
- void dfs(int step,int x)
- {
- if(step==m)
- {
- return;
- }
- else
- {
- if(x==n+1)
- {
- sum++;
- return;
- }
- }
- dfs(0,x+1);
- dfs(step+1,x+1);
- }
- int main()
- {
- scanf("%d%d",&n,&m);
- book[1]=1;
- dfs(0,1);
- printf("%d",sum);
- return 0;
- }
复制代码 |
|