mirror of
https://github.com/ShusenTang/LeetCode.git
synced 2024-09-02 14:20:01 +00:00
Update 63. Unique Paths II.md
This commit is contained in:
parent
6d279c4b42
commit
6a4eba94df
@ -2,7 +2,9 @@
|
|||||||
# 思路
|
# 思路
|
||||||
这题其实和[62. Unique Paths](https://leetcode.com/problems/unique-paths/)几乎一样的,唯一区别就是矩形网格里存在一些障碍物,我们对每个格子判断一下就行了。
|
这题其实和[62. Unique Paths](https://leetcode.com/problems/unique-paths/)几乎一样的,唯一区别就是矩形网格里存在一些障碍物,我们对每个格子判断一下就行了。
|
||||||
就是一个简单的动归,可参考[62题题解](https://github.com/ShusenTang/LeetCode/blob/master/solutions/62.%20Unique%20Paths.md)。
|
就是一个简单的动归,可参考[62题题解](https://github.com/ShusenTang/LeetCode/blob/master/solutions/62.%20Unique%20Paths.md)。
|
||||||
时间空间复杂度都是O(mn)
|
时间空间复杂度都是O(mn)
|
||||||
|
另外,类似62题,可将空间复杂度优化到O(m),这里不再赘述,可参考[讨论区](https://leetcode.com/problems/unique-paths-ii/discuss/23252/4ms-O(n)-DP-Solution-in-C%2B%2B-with-Explanations)
|
||||||
|
注意: dp数组开成int型时有的case过不了(之前是没有这些case的,直接int就能过),所以开成long long型的
|
||||||
|
|
||||||
# C++
|
# C++
|
||||||
``` C++
|
``` C++
|
||||||
@ -10,14 +12,13 @@ class Solution {
|
|||||||
public:
|
public:
|
||||||
int uniquePathsWithObstacles(vector<vector<int>>& obstacleGrid) {
|
int uniquePathsWithObstacles(vector<vector<int>>& obstacleGrid) {
|
||||||
int m = obstacleGrid.size(), n = obstacleGrid[0].size();
|
int m = obstacleGrid.size(), n = obstacleGrid[0].size();
|
||||||
vector<vector<int>>dp(m + 1, vector<int>(n + 1, 0));
|
vector<vector<long long> > dp(m + 1, vector<long long> (n + 1, 0));
|
||||||
dp[1][1] = 1;
|
dp[0][1] = 1;
|
||||||
for(int i = 1; i <= m; i++)
|
for (int i = 1; i <= m; i++)
|
||||||
for(int j = 1; j <= n; j++){
|
for (int j = 1; j <= n; j++)
|
||||||
if(obstacleGrid[i - 1][j - 1]) dp[i][j] = 0; // 此处为障碍物
|
if (!obstacleGrid[i - 1][j - 1])
|
||||||
else dp[i][j] += (dp[i - 1][j] + dp[i][j - 1]);
|
dp[i][j] = dp[i - 1][j] + dp[i][j - 1];
|
||||||
}
|
return int(dp[m][n]);
|
||||||
return dp[m][n];
|
}
|
||||||
}
|
|
||||||
};
|
};
|
||||||
```
|
```
|
||||||
|
Loading…
Reference in New Issue
Block a user