forked from illuz/leetcode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAC_dp_nm.cpp
42 lines (36 loc) · 969 Bytes
/
AC_dp_nm.cpp
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
/*
* Author: illuz <iilluzen[at]gmail.com>
* File: AC_dp_nm.cpp
* Create Date: 2014-12-27 10:04:51
* Descripton: dp
*/
#include <bits/stdc++.h>
using namespace std;
const int N = 0;
class Solution {
public:
int uniquePathsWithObstacles(vector<vector<int> > &obstacleGrid) {
if (obstacleGrid.empty() || obstacleGrid[0].empty())
return 0;
int m = obstacleGrid.size();
int n = obstacleGrid[0].size();
vector<int> tab(n);
// init the first line
for (int i = 0; i < n && !obstacleGrid[0][i]; i++)
tab[i] = 1;
// dp
for (int i = 1; i < m; i++) {
if (obstacleGrid[i][0])
tab[0] = 0;
for (int j = 1; j < n; j++)
if (obstacleGrid[i][j])
tab[j] = 0;
else
tab[j] += tab[j - 1];
}
return tab[n - 1];
}
};
int main() {
return 0;
}