HDU 2569: 彼岸
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了HDU 2569: 彼岸相关的知识,希望对你有一定的参考价值。
///@author Sycamore ///@date 9/11/2017 ///@link http://acm.hdu.edu.cn/showproblem.php?pid=2569 #include<bits/stdc++.h> using namespace std; int num[40]; int main() { num[1] = 3; num[2] = 9; for (int i = 3; i < 40; i++) num[i] = 2 * num[i - 1] + num[i - 2]; ios::sync_with_stdio(false); cin.tie(0); int c; cin >> c; while (c--) { int n; cin >> n; cout << num[n] << ‘\n‘; } return 0; }
以上是关于HDU 2569: 彼岸的主要内容,如果未能解决你的问题,请参考以下文章