FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
JavaScript/Dynamic-Programming/MinimumCostPath.js at master · davye/JavaScript · GitHub
davye
/
JavaScript
Public
forked from
TheAlgorithms/JavaScript
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
JavaScript
/
Dynamic-Programming
/
MinimumCostPath.js
Copy path
More file actions
More file actions
Latest commit
History
History
History
43 lines (33 loc) · 1.04 KB
Breadcrumbs
JavaScript
/
Dynamic-Programming
/
MinimumCostPath.js
Copy path
File metadata and controls
43 lines (33 loc) · 1.04 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
// Problem Statement => https://www.youtube.com/watch?v=lBRtnuxg-gU
const
minCostPath
=
(
matrix
)
=>
{
/*
Find the min cost path from top-left to bottom-right in matrix
>>> minCostPath([[2, 1], [3, 1], [4, 2]])
>>> 6
*/
const
n
=
matrix
.
length
const
m
=
matrix
[
0
]
.
length
// moves[i][j] => minimum number of moves to reach cell i, j
const
moves
=
new
Array
(
n
)
for
(
let
i
=
0
;
i
<
moves
.
length
;
i
++
)
moves
[
i
]
=
new
Array
(
m
)
// base conditions
moves
[
0
]
[
0
]
=
matrix
[
0
]
[
0
]
// to reach cell (0, 0) from (0, 0) is of no moves
for
(
let
i
=
1
;
i
<
m
;
i
++
)
moves
[
0
]
[
i
]
=
moves
[
0
]
[
i
-
1
]
+
matrix
[
0
]
[
i
]
for
(
let
i
=
1
;
i
<
n
;
i
++
)
moves
[
i
]
[
0
]
=
moves
[
i
-
1
]
[
0
]
+
matrix
[
i
]
[
0
]
for
(
let
i
=
1
;
i
<
n
;
i
++
)
{
for
(
let
j
=
1
;
j
<
m
;
j
++
)
{
moves
[
i
]
[
j
]
=
Math
.
min
(
moves
[
i
-
1
]
[
j
]
,
moves
[
i
]
[
j
-
1
]
)
+
matrix
[
i
]
[
j
]
}
}
return
moves
[
n
-
1
]
[
m
-
1
]
}
export
{
minCostPath
}
// Example
// minCostPath([
// [2, 1],
// [3, 1],
// [4, 2]
// ])
// minCostPath([
// [2, 1, 4],
// [2, 1, 3],
// [3, 2, 1]
// ])
Back
|
FazBrowse Home
|
New Git URL