forked from aylei/leetcode-rust
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathn0064_minimum_path_sum.rs
78 lines (73 loc) · 1.76 KB
/
n0064_minimum_path_sum.rs
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
/**
* [64] Minimum Path Sum
*
* Given a m x n grid filled with non-negative numbers, find a path from top left to bottom right which minimizes the sum of all numbers along its path.
*
* Note: You can only move either down or right at any point in time.
*
* Example:
*
*
* Input:
* [
* [1,3,1],
* [1,5,1],
* [4,2,1]
* ]
* Output: 7
* Explanation: Because the path 1→3→1→1→1 minimizes the sum.
*
*
*/
pub struct Solution {}
// submission codes start here
impl Solution {
pub fn min_path_sum(grid: Vec<Vec<i32>>) -> i32 {
let (height, width) = (grid.len(), grid[0].len());
let mut grid = grid;
let mut step = 1;
while step <= height + width - 2 {
for x in 0..(step+1) {
let y = step - x;
if x >= height || y >= width { continue }
if x < 1 {
grid[x][y] += grid[x][y-1];
} else if y < 1 {
grid[x][y] += grid[x-1][y];
} else {
grid[x][y] += i32::min(grid[x][y-1], grid[x-1][y]);
}
}
step += 1;
}
grid[height-1][width-1]
}
}
// submission codes end
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn test_64() {
assert_eq!(
Solution::min_path_sum(vec![vec![2]]),
2
);
assert_eq!(
Solution::min_path_sum(
vec![
vec![1,3,1],
vec![1,5,1],
vec![4,2,1],
]),
7
);
assert_eq!(
Solution::min_path_sum(
vec![
vec![1,3,1],
]),
5
);
}
}