-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.js
71 lines (69 loc) · 1.59 KB
/
index.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
/*
* @lc app=leetcode id=64 lang=javascript
*
* [64] Minimum Path Sum
*
* https://leetcode.com/problems/minimum-path-sum/description/
*
* algorithms
* Medium (45.20%)
* Total Accepted: 305.4K
* Total Submissions: 602.5K
* Testcase Example: '[[1,3,1],[1,5,1],[4,2,1]]'
*
* 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) {
const dp = [];
grid.forEach((row, index) => {
if (index === 0) {
row.forEach((item, index) => {
if (index === 0) {
dp[0] = [item];
} else {
dp[0][index] = dp[0][index - 1] + item;
}
})
} else {
dp[index] = [dp[index - 1][0] + row[0]];
}
});
for (let i = 1; i < grid.length; i++) {
for (let j = 1; j < grid[i].length; j++) {
dp[i][j] = Math.min(dp[i - 1][j], dp[i][j - 1]) + grid[i][j];
}
}
return dp.pop().pop();
};
console.log(minPathSum([
[1,3,1],
[1,5,1],
[4,2,1]
]))
module.exports = {
id:'64',
title:'Minimum Path Sum',
url:'https://leetcode.com/problems/minimum-path-sum/description/',
difficulty:'Medium',
}