比赛 哈哈哈 评测结果 RRRRRRRRRR
题目名称 核电站问题 最终得分 0
用户昵称 AE86 运行时间 0.002 s
代码语言 C++ 内存使用 3.16 MiB
提交时间 2019-03-07 21:59:06
显示代码纯文本
#include <iostream>
#include <cstdio>
#include <algorithm>
using namespace std;
	int n,m,ans=0; 
	int dfs(int a,int b)
	{ 	if(b==m) 
	return 0;
		if(a==n) 	
		{
	 		ans++; 
			return 1; 
		} 
		int ans=0; dfs(a+1,0);
		dfs(a+1,b+1);
 	} 
	 int main()
	 { 
	 	int res; 
	 	cin>>n>>m;
	  	dfs(0,0);
 		cout<<ans; 
	 }