码迷,mamicode.com
首页 > 其他好文 > 详细

足球赛售票

时间:2014-08-17 11:43:22      阅读:177      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   os   io   strong   ar   

 

记忆式搜索

 

#include <iostream>
using namespace std;
int f(int a,int b)
{
if(a<b) return 0;
else if(b==0) return 1;
else if(b<=a) return f(a-1,b)+f(a,b-1) ;
}

 

int main(int argc, char *argv[])
{

int m,n;
while(cin>>m>>n)
 cout<<f(m,n)<<endl;
 return 0;
}

 

bubuko.com,布布扣

足球赛售票,布布扣,bubuko.com

足球赛售票

标签:style   blog   http   color   os   io   strong   ar   

原文地址:http://www.cnblogs.com/2014acm/p/3917560.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!