本文主要是介绍HDU Fibonacci Again,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
题目传送门:http://acm.hdu.edu.cn/showproblem.php?pid=1021
本题找规律,否则BoomShakalaka。
#include<stdio.h>
#include<string.h>
//#define LOCAL
int Fibonacci[1000000];
using namespace std;
//大数找规律,不然容易溢出
int main(){#ifdef LOCALfreopen("input.txt","r",stdin);#endif // LOCAL
这篇关于HDU Fibonacci Again的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!