-
Notifications
You must be signed in to change notification settings - Fork 43
/
fibonacci-number.py
75 lines (69 loc) · 1.87 KB
/
fibonacci-number.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
# V0
# https://github.com/labuladong/fucking-algorithm/blob/master/%E5%8A%A8%E6%80%81%E8%A7%84%E5%88%92%E7%B3%BB%E5%88%97/%E5%8A%A8%E6%80%81%E8%A7%84%E5%88%92%E8%AF%A6%E8%A7%A3%E8%BF%9B%E9%98%B6.md
# TIME COMPLEXITY : 2^N
# SPACE COMPLEXITY : 1
class Solution:
def fib(self, N):
if N <= 2:
return 1
return (self.fib(N-1) + self.fib(N-2))
# V0'
# IDEA : optimized DP
# TIME COMPLEXITY : N
# SPACE COMPLEXITY : 1
class Solution:
def fib(self, N: int) -> int:
if N == 0 or N == 1:
return N
a, b = 0, 1
for i in range(1, N):
a, b = b, a+b
return b
# V1
# https://blog.csdn.net/zhangpeterx/article/details/100056015
class Solution:
def fib(self, N: int) -> int:
if N == 0 or N == 1:
return N
a, b = 0, 1
for i in range(1, N):
a, b = b, a+b
return b
# V2
# Time: O(logn)
# Space: O(1)
import itertools
class Solution(object):
def fib(self, N):
"""
:type N: int
:rtype: int
"""
def matrix_expo(A, K):
result = [[int(i==j) for j in range(len(A))] \
for i in range(len(A))]
while K:
if K % 2:
result = matrix_mult(result, A)
A = matrix_mult(A, A)
K /= 2
return result
def matrix_mult(A, B):
ZB = zip(*B)
return [[sum(a*b for a, b in itertools.izip(row, col)) \
for col in ZB] for row in A]
T = [[1, 1],
[1, 0]]
return matrix_expo(T, N)[1][0]
# Time: O(n)
# Space: O(1)
class Solution2(object):
def fib(self, N):
"""
:type N: int
:rtype: int
"""
prev, current = 0, 1
for i in range(N):
prev, current = current, prev + current,
return prev