[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 either move to four directions: left, right, up or down. You may NOT move diagonally or move outside of the boundary (i.e. wrap-around is not allowed).

Example 1:

nums = [
[9,9,4],
[6,6,8],
[2,1,1]
]
Return 4
The longest increasing path is [1, 2, 6, 9].

Example 2:

nums = [
[3,4,5],
[3,2,6],
[2,2,1]
]
Return 4
The longest increasing path is [3, 4, 5, 6]. Moving diagonally is not allowed.
题意:
给定一个二维数组,找出从某个位置开始的最长严格递增序列。
思路:
找出递增序列,可以使用深度优先搜索DFS,此处无需记录哪些节点已经被访问过,因为我们要求的是递增的序列,比如a,b,c,d,当访问到e的时候不需要去考虑a,b,c,d是否已经访问过,因为e肯定比a,b,c,d都大,所以a,b,c,d在大小上不会符合要求,所以我们无需保存哪些节点已经访问过。使用动态规划保存已经求得的值。DP[x][y]代表的是从x,y开始最长的递增序列。如果这个x,y节点的DP值还没有算出来,那么我们只需要从当前节点往不同的四个方向分别遍历,采用回溯的DFS方法,如果这个节点已经算出了DP值,那么直接返回。所以当前节点的最长递增长度等于从四个方向中挑出一个最长的加上自身。
以上。
代码如下:

class Solution {
public:
    int longestIncreasingPath(vector<vector<int>>& matrix) {
        if(matrix.size() == 0)return 0;
        int max_value = 0;
        this->matrix = matrix;
        row = matrix.size();
        col = matrix[0].size();
        this->DP = vector<vector<int>>(row, vector<int>(col, 0));
        directions = {{0,1}, {0,-1}, {-1,0}, {1, 0}};
        for(int i = 0; i < row; i++)
            for(int j = 0; j < col; j++) {
                int res = backTracking(i, j);
                max_value = max(max_value, res);
            }
        return max_value;
    }

    int backTracking(int x, int y) {
        if(DP[x][y])return DP[x][y];
        int result = 0;
        for(auto& direction:directions) {
            int nextX = x + direction[0];
            int nextY = y + direction[1];
            if(nextX < 0 || nextX >= row || nextY < 0 || nextY >= col || matrix[x][y] >= matrix[nextX][nextY])continue;
            int res = backTracking(nextX, nextY);
            result = max(result, res);
        }
        DP[x][y] = ++result;
        return result;
    }
    private:
    vector<vector<int>> matrix;
    vector<vector<int>> DP;
    int row;
    int col;
    vector<vector<int>> directions;
};
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值