-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy path63.cpp
More file actions
25 lines (25 loc) · 863 Bytes
/
Copy path63.cpp
File metadata and controls
25 lines (25 loc) · 863 Bytes
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
class Solution {
public:
int uniquePathsWithObstacles(vector<vector<int>> &obstacleGrid) {
int n = obstacleGrid.size();
if (n == 0)
return 0;
int m = obstacleGrid[0].size();
if (obstacleGrid[n - 1][m - 1] == 1 || obstacleGrid[0][0] == 1)
return 0;
vector<vector<int>> dp(n, vector<int>(m, 0));
int sum = 0;
dp[0][0] = 1;
for (int i = 1; i < n; ++i)
if (obstacleGrid[i][0] == 0)
dp[i][0] = dp[i - 1][0];
for (int j = 1; j < m; ++j)
if (obstacleGrid[0][j] == 0)
dp[0][j] = dp[0][j - 1];
for (int i = 1; i < n; ++i)
for (int j = 1; j < m; ++j)
if (obstacleGrid[i][j] == 0)
dp[i][j] = dp[i - 1][j] + dp[i][j - 1];
return dp[n - 1][m - 1];
}
};