Skip to content

Instantly share code, notes, and snippets.

@bhaveshmunot1
Created June 4, 2020 03:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bhaveshmunot1/e03397ca6694a79ca4be88ad20a5b379 to your computer and use it in GitHub Desktop.
Save bhaveshmunot1/e03397ca6694a79ca4be88ad20a5b379 to your computer and use it in GitHub Desktop.
Leetcode #64: Minimum Path Sum
class Solution {
public:
int minPathSum(vector<vector<int>>& grid) {
int n = grid.size();
int m = grid[0].size();
vector<vector<int>> dp(n, vector<int>(m));
dp[0][0] = grid[0][0];
for (int i=1; i<n; i++) {
dp[i][0] = dp[i-1][0] + grid[i][0];
}
for (int j=1; j<m; j++) {
dp[0][j] = dp[0][j-1] + grid[0][j];
}
for (int i=1; i<n; i++) {
for (int j=1; j<m; j++) {
dp[i][j] = min(dp[i-1][j], dp[i][j-1]) + grid[i][j];
}
}
return dp[n-1][m-1];
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment