-
Notifications
You must be signed in to change notification settings - Fork 2.3k
/
0070-climbing-stairs.js
168 lines (133 loc) · 3.98 KB
/
0070-climbing-stairs.js
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
/**
* Brute Force - DFS
* Time O(2^N) | Space O(N)
* https://leetcode.com/problems/climbing-stairs/
* @param {number} n
* @return {number}
*/
var climbStairs = (n, index = 0) => {
const isBaseCase1 = (n < index);
if (isBaseCase1) return 0;
const isBaseCase2 = (index === n);
if (isBaseCase2) return 1;
const [ next, nextNext ] = [ (index + 1), (index + 2) ];
const left = climbStairs(n, next); /* Time O(2^N) | Space O(N) */
const right = climbStairs(n, nextNext);/* Time O(2^N) | Space O(N) */
return (left + right);
}
/**
* DP - Top Down
* Array - Memoization
* Time O(N) | Space O(N)
* https://leetcode.com/problems/climbing-stairs/
* @param {number} n
* @return {number}
*/
var climbStairs = (n, index = 0, memo = Array(n + 1).fill(0)) => {
const isBaseCase1 = (n < index);
if (isBaseCase1) return 0;
const isBaseCase2 = (index === n);
if (isBaseCase2) return 1;
const hasSeen = (memo[index] !== 0);
if (hasSeen) return memo[index];
const [ next, nextNext ] = [ (index + 1), (index + 2) ];
const left = climbStairs(n, next, memo); /* Time O(N) | Space O(N) */
const right = climbStairs(n, nextNext, memo);/* Time O(N) | Space O(N) */
memo[index] = (left + right); /* | Space O(N) */
return memo[index];
};
/**
* DP - Bottom Up
* Array - Tabulation
* Time O(N) | Space O(N)
* https://leetcode.com/problems/climbing-stairs/
* @param {number} n
* @return {number}
*/
var climbStairs = (n) => {
const isBaseCase = (n === 1);
if (isBaseCase) return 1;
const tabu = initTabu(n);/* Space O(N) */
search(n, tabu);
return tabu[n];
};
var initTabu = (n) => {
const tabu = new Array(n + 1).fill(0);
tabu[1] = 1;
tabu[2] = 2;
return tabu;
}
var search = (n, tabu) => {
for (let index = 3; (index <= n); index++) {/* Time O(N) */
const [ prev, prevPrev ] = [ (index - 1), (index - 2) ];
tabu[index] = (tabu[prev] + tabu[prevPrev]);/* Space O(N) */
}
}
/**
* DP - Fibonacci Number
* Time O(N) | Space O(1)
* https://leetcode.com/problems/climbing-stairs/
* @param {number} n
* @return {number}
*/
var climbStairs = (n) => {
const isBaseCase = (n === 1);
if (isBaseCase) return 1;
let [ next, nextNext ] = [ 1, 2 ];
for (let index = 3; (index <= n); index++) {/* Time O(N) */
const temp = (next + nextNext);
next = nextNext;
nextNext = temp;
}
return nextNext;
};
/**
* Matrix - Bitnets Method
* Time O(log(N)) | Space O(1)
* https://leetcode.com/problems/climbing-stairs/
* @param {number} n
* @return {number}
*/
var climbStairs = (n) => {
const prev = [ [1, 1], [1, 0] ];
const next = power(n, prev);/* Time O(log(N)) */
return next[0][0];
}
const power = (n, prev) => {
let next = [ [1, 0], [0, 1] ];
const isEmpty = () => n === 0;
while (!isEmpty()) {/* Time O(log(N)) */
const isBit = (n & 1) === 1;
if (isBit) next = multiply(next, prev);/* Time O(1) | Space O(1) */
n >>= 1;
prev = multiply(prev, prev); /* Time O(1) | Space O(1) */
}
return next;
}
const multiply = (prev, next) => {
const [ rows, cols ] = [ 2, 2 ];
const matrix = new Array(rows).fill()
.map(() => new Array(cols).fill(0));
for (let row = 0; (row < rows); row++) {
for (let col = 0; (col < cols); col++) {
const left = (prev[row][0] * next[0][col]);
const right = (prev[row][1] * next[1][col]);
matrix[row][col] = (left + right);
}
}
return matrix;
}
/**
* Math - Fibonacci Formula
* Time O(log(N)) | Space O(1)
* https://leetcode.com/problems/climbing-stairs/
* @param {number} n
* @return {number}
*/
var climbStairs = (n, sqrt5 = Math.sqrt(5)) => {
const phi = ((sqrt5 + 1) / 2);
const psi = ((sqrt5 - 1) / 2);
const phiPow = Math.pow(phi, (n + 1));
const psiPow = Math.pow(psi, (n + 1));
return ((phiPow - psiPow) / sqrt5);
}