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

卡特兰数

时间:2019-02-19 21:14:34      阅读:190      评论:0      收藏:0      [点我收藏+]

标签:++   break   turn   std   scanf   http   print   return   href   

https://vjudge.net/contest/284040#problem/J

#include<cstdio>
#include<cstring>
#include<algorithm>

using namespace std;

typedef long long ll;
ll mapp[40][40];
void init() {
  for(int i = 0; i < 36; i++) mapp[i][0] = 1;
    for(int i = 1;i <= 35; i++)
        for(int j = 1; j <= i; j++)
            mapp[i][j] = mapp[i - 1][j] + mapp[i][j - 1];

}
int n;
int main() {
    init();
    int ant = 0;
    while(~scanf("%d", &n)) {
        if(n == -1) break;
        printf("%d %d %lld\n", ++ant, n, 2 * mapp[n][n]);
    }
    return 0;
}

 

卡特兰数

标签:++   break   turn   std   scanf   http   print   return   href   

原文地址:https://www.cnblogs.com/downrainsun/p/10403338.html

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