HDU 2047 阿牛的EOF牛肉串
http://acm.hdu.edu.cn/showproblem.php?pid=2047
也是倒推,a[i] = 2*(a[i-1]+a[i-2])
1 #include<iostream> 2 #include<cmath> 3 #include<algorithm> 4 using namespace std; 5 6 7 int main() 8 { 9 int n; 10 while(cin>>n && n) 11 { 12 long long a[50]; 13 a[1] = 3; 14 a[2] = 8; 15 for(int i = 3;i<=n;i++) 16 a[i] = 2*(a[i-1]+a[i-2]); 17 cout<<a[n]<<endl; 18 } 19 20 }
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】凌霞软件回馈社区,博客园 & 1Panel & Halo 联合会员上线
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步