forked from algorhythms/LeetCode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
069 Climbing Stairs.py
50 lines (46 loc) · 1.46 KB
/
069 Climbing Stairs.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
"""
You are climbing a stair case. It takes n steps to reach to the top.
Each time you can either climb 1 or 2 steps. In how many distinct ways can you climb to the top?
"""
__author__ = 'Danyang'
class Solution:
def climbStairs_save_memory(self, n):
"""
DP. The transition function should be:
f(n) = f(n-1) + f(n-2) n>2;
or = 1 n=1
or = 2 n=2
:param n: an integer, number of stairs
:return: an integer, number of different combinations
"""
f_n_minus_2 = 1 # f(1)
f_n_minus_1 = 2 # f(2)
if n==1: return f_n_minus_2
if n==2: return f_n_minus_1
fn = 0
for i in range(2, n):
fn = f_n_minus_1 +f_n_minus_2
# for next iteration, n = n+1
f_n_minus_2 = f_n_minus_1
f_n_minus_1 = fn
return fn
def climbStairs(self, n):
"""
DP. The transition function should be:
f(n) = f(n-1) + f(n-2) n>2;
or = 1 n=1
or = 2 n=2
:param n: an integer, number of stairs
:return: an integer, number of different combinations
"""
if n==1: return 1
if n==2: return 2
f = [0 for _ in xrange(n+1)]
f[0] = 0
f[1] = 1
f[2] = 2
for i in xrange(3, n+1):
f[i] = f[i-1]+f[i-2]
return f[n]
if __name__=="__main__":
print Solution().climbStairs(3)