-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathminimum_path_sum.js
54 lines (48 loc) · 1.07 KB
/
minimum_path_sum.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
// 64. Minimum Path Sum
// Medium
//
// 1437
//
// 41
//
// Favorite
//
// Share
// Given a m x n grid filled with non-negative numbers, find a path from top left to bottom right which minimizes the sum of all numbers along its path.
//
// Note: You can only move either down or right at any point in time.
//
// Example:
//
// Input:
// [
// [1,3,1],
// [1,5,1],
// [4,2,1]
// ]
// Output: 7
// Explanation: Because the path 1→3→1→1→1 minimizes the sum.
/**
* @param {number[][]} grid
* @return {number}
*/
var minPathSum = function(grid) {
let row = grid.length;
let column = grid[0].length;
//first row
for (let i = 1; i < column; i++) {
grid[0][i] += grid[0][i - 1];
}
//first column
for (let i = 1; i < row; i++) {
grid[i][0] += grid[i - 1][0];
}
for (let i = 1; i < row; i++) {
for (let j = 1; j < column; j++) {
let min = Math.min(grid[i - 1][j], grid[i][j - 1]);
grid[i][j] = min + grid[i][j];
}
}
return grid[row - 1][column - 1];
};
minPathSum([[1, 3, 1, 2], [1, 5, 1, 1]]);