博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
HDU——1134 Game of Connections
阅读量:5982 次
发布时间:2019-06-20

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

        Game of Connections

      Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others)

        Total Submission(s): 4844    Accepted Submission(s): 2811

Problem Description
This is a small but ancient game. You are supposed to write down the numbers 1, 2, 3, ... , 2n - 1, 2n consecutively in clockwise order on the ground to form a circle, and then, to draw some straight line segments to connect them into number pairs. Every number must be connected to exactly one another. And, no two segments are allowed to intersect.
It's still a simple game, isn't it? But after you've written down the 2n numbers, can you tell me in how many different ways can you connect the numbers into pairs? Life is harder, right?
 
Input
Each line of the input file will be a single positive number n, except the last line, which is a number -1. You may assume that 1 <= n <= 100.
 
Output
For each n, print in a single line the number of ways to connect the 2n numbers into pairs.
 
Sample Input
2 3 -1
 
Sample Output
2 5
 
Source
 
Recommend
Eddy   |   We have carefully selected several similar problems for you:       
 
题意:
这是一个小而古老的游戏。你应该把数字1,2,3,.,2n-1,2n连续地按顺时针顺序在地上形成一个圆圈,然后画出一些直线线段,将它们连接成数对。每一个数字都必须相互联系。没有两个区段被允许相交。 这仍然是个简单的游戏,不是吗?但是,在你写下了2n的数字之后,你能告诉我,你可以用多少种不同的方式将数字连接成对?生活更艰难,对吧?
思路:
看题意,这道题是不是圆的划分?!
对,就是圆的划分,这样我们又可以用卡特兰数来做了。。
代码:
#include
#include
#include
#include
#include
#define N 110using namespace std;int n,len,tmp,sum,b[N],a[N][N];int read(){ int x=0,f=1; char ch=getchar(); while(ch<'0'||ch>'9'){
if(ch=='-')f=-1; ch=getchar();} while(ch>='0'&&ch<='9'){x=x*10+ch-'0'; ch=getchar();} return x*f;}int catelan(){ len=1; a[1][0]=b[1]=1; for(int i=2;i<110;i++) { for(int j=0;j
=0;j--) { tmp=sum*10+a[i][j]; a[i][j]=tmp/(i+1); sum=tmp%(i+1); } while(!a[i][len-1]) --len; b[i]=len; }}int main(){ catelan(); while(1) { n=read(); if(n==-1) break; for(int i=b[n]-1;i>=0;i--) printf("%d",a[n][i]); printf("\n"); } return 0;}

 

 

转载于:https://www.cnblogs.com/z360/p/7337576.html

你可能感兴趣的文章
Struts2 自定义拦截器(方法拦截器)
查看>>
Linux服务器的那些性能参数指标
查看>>
BZOJ 2302: [HAOI2011]Problem c [DP 组合计数]
查看>>
c++ 11开始语言本身和标准库支持并发编程
查看>>
.NET Core 之 MSBuild 介绍
查看>>
iOS:即时通讯之<了解篇 SocKet>
查看>>
《JavaScript高级程序设计》读书笔记(十):本地对象Date
查看>>
linux中fork()函数详解
查看>>
从1G到5G,46年屏幕变迁下,富士康、苹果、三星、华为的浴火重生路 ...
查看>>
用flash测试你的ircd
查看>>
白话红黑树系列之二——红黑树的构建
查看>>
客户的一张表中出现重复数据,而该列由唯一键约束,重复值如何产生的呢?...
查看>>
MySQL5.6中新增特性、不推荐使用的功能以及废弃的功能
查看>>
OnePlus安装Kali-NetHunter
查看>>
JavaScript:Array 对象
查看>>
PDFCreator:一款免费,开源的PDF(Tiff,pcx,png,jpeg,bmp,PS,EPS)打印机(VB,GPL),并提供了COM接口,方便使用各种编程语言调用...
查看>>
Note 1773479 - SYB: Displaying multiple triggers per object
查看>>
联手云计算核心技术开发,BoCloud与中科院软件所战略合作
查看>>
2017年背景下的SSD选购技巧有哪些变化?
查看>>
2016年的数据存储和管理的成本将何去何从?
查看>>