Golang | Leetcode Golang题解之第329题矩阵中的最长递增路径

题目:

题解:

Go 复制代码
var (
    dirs = [][]int{[]int{-1, 0}, []int{1, 0}, []int{0, -1}, []int{0, 1}}
    rows, columns int
)

func longestIncreasingPath(matrix [][]int) int {
    if len(matrix) == 0 || len(matrix[0]) == 0 {
        return 0
    }
    rows, columns = len(matrix), len(matrix[0])
    outdegrees := make([][]int, rows)
    for i := 0; i < rows; i++ {
        outdegrees[i] = make([]int, columns)
    }
    for i := 0; i < rows; i++ {
        for j := 0; j < columns; j++ {
            for _, dir := range dirs {
                newRow, newColumn := i + dir[0], j + dir[1]
                if newRow >= 0 && newRow < rows && newColumn >= 0 && newColumn < columns && matrix[newRow][newColumn] > matrix[i][j] {
                    outdegrees[i][j]++
                }
            }
        }
    }

    queue := [][]int{}
    for i := 0; i < rows; i++ {
        for j := 0; j < columns; j++ {
            if outdegrees[i][j] == 0 {
                queue = append(queue, []int{i, j})
            }
        }
    }
    ans := 0
    for len(queue) != 0 {
        ans++
        size := len(queue)
        for i := 0; i < size; i++ {
            cell := queue[0]
            queue = queue[1:]
            row, column := cell[0], cell[1]
            for _, dir := range dirs {
                newRow, newColumn := row + dir[0], column + dir[1]
                if newRow >= 0 && newRow < rows && newColumn >= 0 && newColumn < columns && matrix[newRow][newColumn] < matrix[row][column] {
                    outdegrees[newRow][newColumn]--
                    if outdegrees[newRow][newColumn] == 0 {
                        queue = append(queue, []int{newRow, newColumn})
                    }
                }
            }
        }
    }
    return ans
}
相关推荐
小孟Java攻城狮36 分钟前
leetcode-不同路径问题
算法·leetcode·职场和发展
ByteBlossom6663 小时前
MDX语言的语法糖
开发语言·后端·golang
编程小猹3 小时前
学习golang语言时遇到的难点语法
学习·golang·xcode
沈霁晨4 小时前
Ruby语言的Web开发
开发语言·后端·golang
代码驿站5208 小时前
JavaScript语言的软件工程
开发语言·后端·golang
行路见知8 小时前
3.1 Go函数调用过程
golang
一只会飞的猪_8 小时前
国密加密golang加密,java解密
java·开发语言·golang
C++小厨神10 小时前
MATLAB语言的编程范式
开发语言·后端·golang
小柴狗10 小时前
MAC 地址转换为标准大写格式
golang
冯萦岚11 小时前
R语言的图形用户界面
开发语言·后端·golang