码迷,mamicode.com
首页 >  
搜索关键字:大数-斐波那契    ( 6个结果
HDU1250大数+斐波那契数列
Description A Fibonacci sequence is calculated by adding the previous two members the sequence, with the first two members being both 1. F(1) = 1, F(2
分类:其他好文   时间:2016-02-18 18:01:16    阅读次数:150
hdu1250
链接:点击打开链接 题意:大数斐波那契 代码:#include #include #include using namespace std; #define N 10000 #define M 300 #define mod 100000000 int a[N][M]; void bignumber(){ int i,j,t; a[1][1]=a[2][1]=a[3][1...
分类:其他好文   时间:2015-08-13 14:26:34    阅读次数:105
大数斐波那契数列
和大数相加差不多就是开一个二维数组第一维记录第几个数第二维记录这一个数的位数#include #include int a[1000][1000]; int main() { int n,m,i,k,c,l; scanf("%d",&n); while(n--) { scanf("%d",&m);l=1;...
分类:其他好文   时间:2015-08-12 16:57:33    阅读次数:153
斐波那契数列(大数)
1216: 斐波那契数列时间限制: 1 Sec内存限制: 128 MB点我题目描述Fibonacci数列,定义如下:f(1)=f(2)=1f(n)=f(n-1)+f(n-2) n>=3计算第n项Fibonacci数值。输入输入第一行为一个整数n(1 2 #include 3 #include 4.....
分类:其他好文   时间:2015-07-25 11:57:29    阅读次数:123
POJ2506:Tiling(递推+大数斐波那契)
http://poj.org/problem?id=2506#include #include #include #include using namespace std;int a[260][260];int main(){ int n,i,j; memset(a,0,sizeof(a...
分类:其他好文   时间:2014-10-09 01:53:57    阅读次数:183
Hat's Fibonacci
http://acm.hdu.edu.cn/showproblem.php?pid=1250大数斐波那契%08d是什么东西,为什么我用flag交不上,唉,不刷大数了,没劲。暑假再讲。就是交不上#include #include #include #include using namespace st...
分类:其他好文   时间:2014-06-29 19:22:20    阅读次数:200
6条  
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!