• [LintCode] Longest Increasing Continuous subsequence II


    http://www.lintcode.com/en/problem/longest-increasing-continuous-subsequence-ii/#

    Give you an integer matrix (with row size n, column size m),find the longest increasing continuous subsequence in this matrix. (The definition of the longest increasing continuous subsequence here can start at any row or column and go up/down/right/left any direction).

    Example

    Given a matrix:

    [
      [1 ,2 ,3 ,4 ,5],
      [16,17,24,23,6],
      [15,18,25,22,7],
      [14,19,20,21,8],
      [13,12,11,10,9]
    ]
    
    这道题使用dfs+dp,在dfs时更新状态,状态转移方程为 dp[(i,j)] = max(dp[(smaller neibors of all)])  + 1,来看代码:
    class Solution {
    public:
        /**
         * @param A an integer matrix
         * @return an integer
         */
        int longestIncreasingContinuousSubsequenceII(vector<vector<int>>& A) {
            if (A.empty() || A[0].empty()) {
                return 0;
            } 
            
            int ret = 0;
            int maxRow = A.size();
            int maxCol = A[0].size();
            vector<vector<int>> dp(maxRow, vector<int>(maxCol));
            for (int i = 0; i < maxRow; i++) {
                for (int j = 0; j < maxCol; j++) {
                    ret = max(ret, dfs(i, j, maxRow, maxCol, A, dp));
                }
            }
            
            return ret;
        }
        
    private:
        int dfs(int i, int j, int maxRow, int maxCol,
                 const vector<vector<int>> &A,
                 vector<vector<int>> &dp) {
            // 记忆化搜索,如果有值(之前dfs已经计算出的)直接返回,不再计算 
            if (dp[i][j] != 0) {
                return dp[i][j];
            }
            
            // 从up开始顺时针
            const int dx[] = {0, 1, 0, -1};
            const int dy[] = {-1, 0, 1, 0};
            
            // dfs更新dp状态
            for (int ix = 0; ix < 4; ix++) {
                int x = i + dx[ix];
                int y = j + dy[ix];
                if (0 <= x && x < maxRow && 0 <= y && y < maxCol && A[i][j] < A[x][y]) {
                    dp[i][j] = max(dp[i][j], dfs(x, y, maxRow, maxCol, A, dp));
                } 
            }
            
            return ++dp[i][j];
        }
    };
  • 相关阅读:
    经典的博客有价值的博客
    关于前后端接口的异常的处理
    java重新学习记载的一些资料。
    java重新开始学习
    MFC Socket
    修复 SQLite 数据库文件
    VC++源文件编码
    VC++ 中使用 std::string 转换字符串编码
    Windows代码页、区域
    UTF-7编码
  • 原文地址:https://www.cnblogs.com/jianxinzhou/p/4530825.html
Copyright © 2020-2023  润新知