博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
C - Train Problem II——(HDU 1023 Catalan 数)
阅读量:6114 次
发布时间:2019-06-21

本文共 2208 字,大约阅读时间需要 7 分钟。

Train Problem II

Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others)
Total Submission(s): 7616    Accepted Submission(s): 4101
Problem Description
As we all know the Train Problem I, the boss of the Ignatius Train Station want to know if all the trains come in strict-increasing order, how many orders that all the trains can get out of the railway.
 
Input
The input contains several test cases. Each test cases consists of a number N(1<=N<=100). The input is terminated by the end of file.
 
Output
For each test case, you should output how many ways that all the trains can get out of the railway.
 
Sample Input
 
1 2 3 10
 
Sample Output
 
1 2 5 16796
Hint
The result will be very large, so you may not process it by 32-bit integers.
 
题目大意:

就是求一个卡特兰数,如果是C++的话 得用高精度,java 的话 得用 BigInteger。。。

解题思路:

只要掌握卡特兰数的公式就行了,两个公式:

1. 组合公式为 Cn = C(2n,n) / (n+1);

2. 递推公式为 h(n ) = h(n-1)*(4*n-2) / (n+1)

我们采用的是第二个,如果用java 写的话还是比较省事儿的,因为直接有个大数类,所以直接调用就行,所以我也先给一个java的代码(也是第一次写java代码 有点小紧张):

My Java Code:

import java.util.*;import java.math.BigInteger;public class Main {    public static void main(String[] args) {        BigInteger a[] = new BigInteger[105];        a[0] = BigInteger.ZERO;        a[1] = BigInteger.ONE;        for(int i=2;i<=102;i++) {            a[i] = a[i-1].multiply(BigInteger.valueOf(4*i-2)).divide(BigInteger.valueOf(i+1));        }                Scanner in = new Scanner(System.in);                while(in.hasNext()) {            int n=in.nextInt();            System.out.println(a[n]);        }    }}
然后接下来就是用c++写的了,这个得用到 高精度乘法,然后采用了bin神的Catalan数模板,觉得还是比较实用的,自己也做了一点小改动,当然适合自己的才是最好的,只要理解起来容易,怎么理解方便怎么来,给一下AC 的C++代码:

My Cpp Code:

#include 
#include
#include
using namespace std;const int MAXN = 105;int a[MAXN][MAXN];int b[MAXN];///可以作为模板void Catalan(){ int yu,len; a[1][0] = 1; a[1][1] = 1; len = 1; for(int i=2; i
=1; j--) { int t = a[i][j]+yu*10; a[i][j] = t/(i+1); yu = t%(i+1); } while(!a[i][len]) len--; a[i][0] = len; }}int main(){ Catalan(); int n; while(cin>>n) { for(int i=a[n][0]; i>0; i--) cout<

转载地址:http://awnka.baihongyu.com/

你可能感兴趣的文章
ABP实战--集成Ladp/AD认证
查看>>
存储过程
查看>>
phpcms v9栏目列表调用每一篇文章内容方法
查看>>
python 自定义信号处理器
查看>>
我只是轻奢 40万内入门豪车最高让利7万!-搜狐汽车
查看>>
曲演杂坛--隐式转换
查看>>
远程桌面连接技巧--与主机拷贝文本及拷贝文件(转)
查看>>
MVC中下拉框显示枚举项
查看>>
Linux基础精华
查看>>
SqlServer2008第一次安装后连接问题
查看>>
cocos2d-x Schedule详解
查看>>
sdut 2163:Identifiers(第二届山东省省赛原题,水题)
查看>>
C++ 容器:顺序性容器、关联式容器和容器适配器
查看>>
mysql 常用语句集
查看>>
Atitit.软件开发提升稳定性总结
查看>>
lftp查看文件时间与登录服务查看文件时间相差8小时
查看>>
[leetcode]Next Permutation @ Python
查看>>
JAVA(2)——JDBC
查看>>
php heredoc 与 nowdoc
查看>>
DBA_Oracle DBA常用表汇总(概念)
查看>>