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

shu_1016 栈

时间:2014-07-09 10:17:44      阅读:239      评论:0      收藏:0      [点我收藏+]

标签:组合数学

http://202.121.199.212/JudgeOnline/problem.php?cid=1079&pid=2


分析: Catalan数的应用,直接用了Catalan数的递推公式之一


代码:

#include <iostream>
#include <stdio.h>
using namespace std;
 
long long f[20];
void init()
{
    f[0]=f[1]=1;
    for(int i=2;i<=18;i++){
        f[i]=f[i-1]*(4*i-2)/(i+1);
        //cout<<f[i]<<endl;
    }
}
 
int main()
{
    init();
    int n;
    scanf("%d",&n);
    printf("%lld\n",f[n]);
}




shu_1016 栈,布布扣,bubuko.com

shu_1016 栈

标签:组合数学

原文地址:http://blog.csdn.net/vuorange/article/details/37562465

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