-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdifferentpath63.java
More file actions
30 lines (30 loc) · 999 Bytes
/
differentpath63.java
File metadata and controls
30 lines (30 loc) · 999 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
26
27
28
29
30
public class differentpath63 {
public static void main(String[] args) {
int[][] number = new int[][]{{1}};
System.out.println(uniquePathsWithObstacles(number));
}
public static int uniquePathsWithObstacles(int[][] obstacleGrid) {
int m = obstacleGrid.length;
int n = obstacleGrid[0].length;
int[][] dp = new int[m][n];
if(obstacleGrid[0][0] == 1) return 0;
for(int k = 0; k < m; k++) {
if(obstacleGrid[k][0] != 1) dp[k][0] = 1;
else break;
}
for(int z = 0; z < n; z++) {
if(obstacleGrid[0][z] != 1) dp[0][z] = 1;
else break;
}
for(int i = 1; i < m; i++ ) {
for(int j = 1; j < n; j++) {
if(obstacleGrid[i][j] == 1) {
dp[i][j] = 0;
continue;
}
dp[i][j] = dp[i - 1][j] + dp[i][j - 1];
}
}
return dp[m - 1][n - 1];
}
}