题目链接
http://acm.hdu.edu.cn/showproblem.php?pid=2064
这题很水,直接找递推方程 可知 F(n)=3*f(n-1)+2;
代码
#include<stdio.h>
int main(void)
{
__int64 a[40];
int i,n;
a[1]=2;
for(i=2;i<=35;i++)
a[i]=3*a[i-1]+2;
while(scanf("%d",&n)==1)
{
printf("%I64d
",a[n]);
}
return 0;
}
参数
0MS 248K 228 B