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
struct Solution;

impl Solution {
    fn unique_paths_with_obstacles(obstacle_grid: Vec<Vec<i32>>) -> i32 {
        let n = obstacle_grid.len();
        let m = obstacle_grid[0].len();
        let mut dp = vec![vec![0; m]; n];
        dp[0][0] = 1;
        for i in 0..n {
            for j in 0..m {
                if obstacle_grid[i][j] == 0 {
                    if i > 0 {
                        dp[i][j] += dp[i - 1][j];
                    }
                    if j > 0 {
                        dp[i][j] += dp[i][j - 1];
                    }
                } else {
                    dp[i][j] = 0;
                }
            }
        }
        dp[n - 1][m - 1]
    }
}

#[test]
fn test() {
    let obstacle_grid = vec_vec_i32![[0, 0, 0], [0, 1, 0], [0, 0, 0]];
    let res = 2;
    assert_eq!(Solution::unique_paths_with_obstacles(obstacle_grid), res);
    let obstacle_grid = vec_vec_i32![[1]];
    let res = 0;
    assert_eq!(Solution::unique_paths_with_obstacles(obstacle_grid), res);
}