hdu 2085
Posted 庸人自扰扰
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了hdu 2085相关的知识,希望对你有一定的参考价值。
PS:递推题.. a[n]=a[n-1]*3+2*b[n-1] b[n]=a[n-1]+b[n-1]
代码:
#include "stdio.h" long long a[35]; long long b[35]; int main(){ int i,c; a[0]=1; b[0]=0; for(i=1;i<35;i++){ a[i]=3*a[i-1]+2*b[i-1]; b[i]=b[i-1]+a[i-1]; } while(~scanf("%d",&c)){ if(c==-1) return 0; printf("%lld, %lld\n",a[c],b[c]); } return 0; }
以上是关于hdu 2085的主要内容,如果未能解决你的问题,请参考以下文章