国产xxxx99真实实拍_久久不雅视频_高清韩国a级特黄毛片_嗯老师别我我受不了了小说

資訊專欄INFORMATION COLUMN

Longest Increasing Path in a Matrix

ralap / 1302人閱讀

摘要:題目鏈接記憶化搜索,用一個二維記錄找到的最長路徑的長度,如果發現證明這個點被找過,不用重復。和這題一個思路。

Longest Increasing Path in a Matrix

題目鏈接:https://leetcode.com/problems...

dfs + 記憶化搜索,用一個二維dp記錄找到的最長路徑的長度,如果發現dpi != 0,證明這個點被找過,不用重復。Number of Islands和這題一個思路。

public class Solution {
    public int longestIncreasingPath(int[][] matrix) {
        if(matrix == null || matrix.length == 0 || matrix[0] == null || matrix[0].length == 0) return 0;
        // dp[i][j] the longest increasing len from (i, j)
        // enumerate all start position
        // dfs find the longest path, if not in dp[i][j]
        dp = new int[matrix.length][matrix[0].length];
        int global = 0;
        for(int i = 0; i < matrix.length; i++) {
            for(int j = 0; j < matrix[0].length; j++) {
                if(dp[i][j] == 0) {
                    dp[i][j] = dfs(matrix, i, j);
                }
                global = Math.max(global, dp[i][j]);
            }
        }
        return global;
    }
    int[][] dp;
    int[][] dir = {{-1, 0}, {1, 0}, {0, -1}, {0, 1}};
    private int dfs(int[][] matrix, int x, int y) {
        if(dp[x][y] != 0) return dp[x][y];
        int len = 1;
        for(int i = 0; i < dir.length; i++) {
            int nx = x + dir[i][0], ny = y + dir[i][1];
            if(nx >= 0 && nx < matrix.length && ny >= 0 && ny < matrix[0].length) {
                if(matrix[nx][ny] > matrix[x][y]) len = Math.max(len, dfs(matrix, nx, ny) + 1);
            }
        }
        dp[x][y] = len;
        return len;
    }
}

文章版權歸作者所有,未經允許請勿轉載,若此文章存在違規行為,您可以聯系管理員刪除。

轉載請注明本文地址:http://specialneedsforspecialkids.com/yun/66571.html

相關文章

  • leetcode 329. Longest Increasing Path in a Matrix

    摘要:題目要求思路和代碼這里采用廣度優先算法加上緩存的方式來實現。我們可以看到,以一個節點作為開始構成的最長路徑長度是確定的。因此我們可以充分利用之前得到的結論來減少重復遍歷的次數。 題目要求 Given an integer matrix, find the length of the longest increasing path. From each cell, you can ei...

    heartFollower 評論0 收藏0
  • 329. Longest Increasing Path in a Matrix

    摘要:題目解答最重要的是用保存每個掃過結點的最大路徑。我開始做的時候,用全局變量記錄的沒有返回值,這樣很容易出錯,因為任何一個用到的環節都有可能改變值,所以還是在函數中定義,把當前的直接返回計算不容易出錯。 題目:Given an integer matrix, find the length of the longest increasing path. From each cell, y...

    hqman 評論0 收藏0
  • [LeetCode] 329. Longest Increasing Path in a Matri

    Problem Given an integer matrix, find the length of the longest increasing path. From each cell, you can either move to four directions: left, right, up or down. You may NOT move diagonally or move ou...

    hss01248 評論0 收藏0
  • [LeetCode] 329. Longest Increasing Path in a Matri

    Problem Given an integer matrix, find the length of the longest increasing path. From each cell, you can either move to four directions: left, right, up or down. You may NOT move diagonally or move ou...

    antz 評論0 收藏0
  • LeetCode 329. Longest Increasing Path in a Matrix

    摘要:思路這道題主要使用記憶化遞歸和深度優先遍歷。我們以給定的矩陣的每一個位置為起點,進行深度優先遍歷。我們存儲每個位置深度優先遍歷的結果,當下一次走到這個位置的時候,我們直接返回當前位置記錄的值,這樣可以減少遍歷的次數,加快執行速度。 Description Given an integer matrix, find the length of the longest increasing...

    isLishude 評論0 收藏0

發表評論

0條評論

最新活動
閱讀需要支付1元查看
<