leetcode 329. Longest Increasing Path in a Matrix 解题报告

原题链接

原题链接

解题思路

刚开始想到了暴力遍历每一个数从头开始深度搜索。后面看了提示发现可以使用数组dp。
dp[i][j]表示以i行j列的数字为开头的最大长度。这样就可以把每个数字都记录下来(以空间换时间)。以免大量的重复。
总体思想就是dfs+dp。

解题代码
public class Solution {
    private int m;
    private int n;
    private int[][] matrix;
    private int[][] dp;
    private static final int[][] directions = {
            {1, 0},
            {0, -1},
            {-1, 0},
            {0, 1}
    };


    public int longestIncreasingPath(int[][] matrix) {
        if (matrix.length == 0 || matrix[0].length == 0) {
            return 0;
        }
        m = matrix.length;
        n = matrix[0].length;
        this.matrix = matrix;
        dp = new int[m][n];
        int result = 1;
        for (int i = 0; i < m; i++) {
            for (int j = 0; j < n; j++) {
                result = Math.max(result, dfs(i, j));
            }
        }
        return result;
    }

    private int dfs(int i, int j) {
        if (dp[i][j] != 0) {
            return dp[i][j];
        }
        int result = 1;
        for (int[] direction : directions) {
            int x = i + direction[0];
            int y = j + direction[1];
            if (x >= 0 && x < m && y >= 0 && y < n && matrix[i][j] < matrix[x][y]) {
                result = Math.max(result, 1 + dfs(x, y));
            }
        }
        dp[i][j] = result;
        return result;
    }
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值