标签:
链接:http://acm.hdu.edu.cn/showproblem.php?pid=2046
1 3 2
1 3 2
题意:用1*2的木块铺2*n的长方形,且要铺满。问:给出n,有多生种铺设方案。
解题思路:观察f(1)=1,f(2)=2,f(3)=3,画个图,显然最后一个木块只有两种排放方式,1)竖排,那么前n-1格有f(n-1)种方案;2)横排,前n-2格有f(n-2)种方案;
由此可得:f(n)=f(n-1)+f(n-2),且n<=5,即为Fibonacci数;
#include<stdio.h> int main() { int i,n,a; __int64 x[55]; x[0]=1; x[1]=1; x[2]=2; for(i=3;i<55;i++) x[i]=x[i-1]+x[i-2]; //预处理,先求出Fibonacci while(scanf("%d",&a)!=EOF) { printf("%I64d\n",x[a]); } return 0; }
版权声明:本文为博主原创文章,未经博主允许不得转载。
标签:
原文地址:http://blog.csdn.net/hellohelloc/article/details/47699831