1289. Minimum Falling Path Sum II

https://leetcode.com/problems/minimum-falling-path-sum-ii

Description

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.

Example 1:

Example 2:

Constraints:

  • n == grid.length == grid[i].length

  • 1 <= n <= 200

  • -99 <= grid[i][j] <= 99

ac

Last updated

Was this helpful?