hdu 2501Tiling_easy version

#include<bits/stdc++.h>
using namespace std;
typedef long long ll;
int main ()
{
	int t,i,n;
	ll ans[35];
	ans[1] = 1,ans[2] = 3;
	while(scanf("%d",&t)==1)
	{
		while(t--)
		{
			scanf("%d",&n);
			for(i = 3;i<=n;i++) ans[i] = 2*ans[i-2]+ans[i-1];
			printf("%lld\n",ans[n]);
		}
	}
	return 0;
}

[题目链接] (http://acm.hdu.edu.cn/showproblem.php?pid=2501)

上一篇:hdu 2041 超级楼梯


下一篇:HDU 2665 可持久化权值线段树区间求第k大