1289. Minimum Falling Path Sum II
Given an n x n integer matrix grid, return the minimum sum of a falling path with non-zero shifts.
A falling path with non-zero shifts is a choice of exactly one element from each row of grid such that no two elements chosen in adjacent rows are in the same column.
- Time : O(nm)
- Space : O(1)
c++
1 | class Solution { |
- Time : O(nmlogm)
- Space : O(m)
c++
1 | class Solution { |