本文主要是介绍HDU 1130(卡特兰数,大数),希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
题意:如题。
import java.util.*;
import java.math.*;
public class Main{
public static void main(String[] args)
{
int n;
Scanner in=new Scanner(System.in);
BigInteger one=BigInteger.ONE;
BigInteger four=new BigInteger("4");
BigInteger two=new BigInteger("2");
BigInteger st=null;
BigInteger ans=null;
while(in.hasNextInt())
{
n=in.nextInt();
ans=BigInteger.ONE;
for(int i=2;i<=n;i++)
{
st=new BigInteger(""+i);
ans=ans.multiply(st.multiply(four).subtract(two)).divide(st.add(one));
}
System.out.println(ans);
}
}
}
这篇关于HDU 1130(卡特兰数,大数)的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!