time limit:1000ms memory limit:32768k
description:
有一些整數(≤46),輸出以這些整數為序數的第n項fibonacci數。檔案中的資料可能上萬,但要求執行時間不超過1秒鐘。
注:f(0) = 0; f(1) = 1; f(n) = f(n-1) + f(n-2).
sample input:56
78940
sample output:58
1321
34102334155
source
zjut1029
如果我們使用遞迴或分治法的思想,可以得到**:
#includeint f(int n)但這段**的結果必定是tle,因為問題的子問題大量重複,即:int main()
return 0;
}
f(n)= f(n-1) + f(n-2)
= f(n - 2) + f(n - 3) + f(n - 1) + f(n - 2)
= f(n - 3) + f(n - 4) + f(n - 4) + f(n - 5) + f(n - 2) + f(n - 3) + f(n - 3) + f(n - 4)
= ...
#includeint main()
int n;
while(scanf("%d", &n) != eof)
return 0;
}
斐波那契數列 斐波那契數列python實現
斐波那契數列 fibonacci sequence 又稱 分割數列 因數學家列昂納多 斐波那契 leonardoda fibonacci 以兔子繁殖為例子而引入,故又稱為 兔子數列 指的是這樣乙個數列 1 1 2 3 5 8 13 21 34 在數學上,斐波納契數列以如下被以遞推的方法定義 f 1 ...
迴圈斐波那契數列 斐波那契數列應用
什麼是斐波那契數列 斐波那契數列指的是這樣乙個數列 1,1,2,3,5,8,13,21,34,55,89,144 這個數列從第3項開始,每一項都等於前兩項之和 台階問題 有一段樓梯有10級台階,規定每一步只能跨一級或兩級,要登上第10級台階有幾種不同的走法?這就是乙個斐波那契數列 登上第一級台階有一...
斐波那契堆
以下是實現的程式 肯定可以再優化的。include include include include using namespace std class node delete m child m child null class fibonacciheap node insert int key v...