HDOJ 2407 Knots(递推规律题)

来源:互联网 发布:如来藏 知乎 编辑:程序博客网 时间:2024/05/20 17:06

Knots

Time Limit: 1000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others)
Total Submission(s): 219    Accepted Submission(s): 149


Problem Description
An even number N of strands are stuck through a wall. On one side of the wall, a girl ties N/2 knots between disjoint pairs of strands. On the other side of the wall, the girl's groom-to-be also ties N/2 knots between disjoint pairs of strands. You are to find the probability that the knotted strands form one big loop (in which case the couple will be allowed to marry).

For example, suppose that N = 4 and you number the strands 1, 2, 3, 4. Also suppose that the girl has created the following pairs of strands by tying knots: {(1, 4), (2,3)}. Then the groom-to-be has two choices for tying the knots on his side: {(1,2), {3,4)} or {(1,3), (2,4)}.
 

Input
The input file consists of one or more lines. Each line of the input file contains a positive even integer, less than or equal to 100. This integer represents the number of strands in the wall.
 

Output
For each line of input, the program will produce exactly one line of output: the probability that the knotted strands form one big loop, given the number of strands on the corresponding line of input. Print the probability to 5 decimal places.
 

Sample Input
420
 

Sample Output
0.666670.28377
 

水题,画图找出规律即可。递推公式为a[n]=a[n-1]*((n-2)/(n-1)),且首项a[2]=1.0

具体代码如下:

<span style="font-size:18px;">#include<cstdio>#include<iostream>using namespace std;int main(){int n,i;double a[105]; a[2]=1.0/1;for(i=4;i<105;i=i+2)   a[i]=a[i-2]*(i-2)/(i-1);while(scanf("%d",&n)!=EOF)printf("%.5lf\n",a[n]);return 0;} </span>


0 0
原创粉丝点击