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

【catalan数】10076 - 凸多边形分割

时间:2014-10-25 21:29:01      阅读:317      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   io   os   for   strong   sp   

【catalan数】10076 - 凸多边形分割

Time Limit: 1000MS
Memory Limit: 32768KB

bubuko.com,布布扣

 

 

 

这题不能用通项公式

我忘记了mod不支持除法

我忘记了mod不支持除法

 1 # include<cstdio>
 2 # include<iostream>
 3 using namespace std;
 4 const int maxn=250;
 5 typedef unsigned long long LL;
 6 LL f[maxn];
 7 int main(){
 8     LL n;cin>>n;
 9     f[2]=f[3]=1;
10     for(int i=4;i<=250;i++)
11     for(int j=2,k=i-1;j<=i-1;j++,k--)
12     f[i]=(f[i]+f[j]*f[k])%1234567;
13     printf("%d",f[n]);
14     return 0;
15 }//µÝÍÆ

 

【catalan数】10076 - 凸多边形分割

标签:style   blog   http   color   io   os   for   strong   sp   

原文地址:http://www.cnblogs.com/zoniony/p/4050901.html

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