forked from neetcode-gh/leetcode
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path0062-unique-paths.js
More file actions
151 lines (127 loc) · 3.79 KB
/
0062-unique-paths.js
File metadata and controls
151 lines (127 loc) · 3.79 KB
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
/**
* Brute Force - DFS
* Time O(2^N) | Space O(HEIGHT)
* https://leetcode.com/problems/unique-paths/
* @param {number} m
* @param {number} n
* @return {number}
*/
var uniquePaths = (row, col) => {
const isBaseCase = row == 1 || col == 1;
if (isBaseCase) return 1;
return dfs(row, col); /* Time O(2^N) | Space O(HEIGHT) */
};
var dfs = (row, col) => {
const left = uniquePaths(row - 1, col); /* Time O(2^N) | Space O(HEIGHT) */
const right = uniquePaths(row, col - 1); /* Time O(2^N) | Space O(HEIGHT) */
return left + right;
};
/**
* DP - Top Down
* Matrix - Memoization
* Time O(ROWS * COLS) | Space O(ROWS * COLS)
* https://leetcode.com/problems/unique-paths/
* @param {number} m
* @param {number} n
* @return {number}
*/
var uniquePaths = (row, col, memo = getMemo(row, col)) => {
const isBaseCase = row === 1 || col === 1;
if (isBaseCase) return 1;
const hasSeen = memo[row][col] !== 0;
if (hasSeen) return memo[row][col];
return dfs(
row,
col,
memo,
); /* Time O(ROWS * COLS) | Space O((ROWS * COLS) + HEIGHT) */
};
var getMemo = (row, col) =>
new Array(row + 1)
.fill() /* Time O(ROWS)| Space O(ROWS) */
.map(() =>
new Array(col + 1).fill(0),
); /* Time O(COLS)| Space O(COLS) */
var dfs = (row, col, memo) => {
const left = uniquePaths(
row - 1,
col,
memo,
); /* Time O(ROWS * COLS) | Space O(HEIGHT) */
const right = uniquePaths(
row,
col - 1,
memo,
); /* Time O(ROWS * COLS) | Space O(HEIGHT) */
memo[row][col] =
left + right; /* | Space O(ROWS * COLS) */
return memo[row][col];
};
/**
* DP - Bottom Up
* Matrix - Tabulation
* Time O(ROWS * COLS) | Space O(ROWS * COLS)
* https://leetcode.com/problems/unique-paths/
* @param {number} row
* @param {number} col
* @return {number}
*/
var uniquePaths = (row, col) => {
const tabu = initTabu(
row,
col,
); /* Time O(ROWS * COLS) | Space O(ROWS * COLS) */
search(row, col, tabu); /* Time O(ROWS * COLS) | Space O(ROWS * COLS) */
return tabu[row - 1][col - 1];
};
var search = (row, col, tabu) => {
for (let _row = 1; _row < row; _row++) {
/* Time O(ROWS)*/
for (let _col = 1; _col < col; _col++) {
/* Time O(COLS)*/
const left = tabu[_row - 1][_col];
const right = tabu[_row][_col - 1];
tabu[_row][_col] = left + right; /* Space O(ROWS * COLS) */
}
}
};
var initTabu = (row, col) => {
const tabu = new Array(row)
.fill() /* Time O(ROWS) | Space O(ROWS) */
.map(() => new Array(col).fill(0)); /* Time O(COLS) | Space O(COLS) */
for (let _row = 0; _row < row; _row++) {
/* Time O(ROWS) */
tabu[_row][0] = 1; /* | Space O(ROWS * COLS) */
}
for (let _col = 0; _col < col; _col++) {
/* Time O(COLS) */
tabu[0][_col] = 1; /* | Space O(ROWS * COLS) */
}
return tabu;
};
/**
* DP - Bottom Up
* Array - Tabulation
* Time O(ROWS * COLS) | Space O(COLS)
* https://leetcode.com/problems/unique-paths/
* @param {number} m
* @param {number} n
* @return {number}
*/
var uniquePaths = (row, col) => {
const tabu = initTabu(col); /* Time O(COLS) | Space O(COLS) */
search(row, col, tabu); /* Time O(ROWS * COLS) | Space O(COLS) */
return tabu[col - 1];
};
var initTabu = (col) =>
new Array(col).fill(1); /* Time O(COLS) | Space O(COLS) */
var search = (row, col, tabu) => {
for (let _row = 1; _row < row; _row++) {
/* Time O(ROWS) */
for (let _col = 1; _col < col; _col++) {
/* Time O(COLS) */
const prev = tabu[_col - 1];
tabu[_col] += prev; /* Space O(COLS) */
}
}
};