博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Leetcode: Longest Increasing Path in a Matrix
阅读量:5081 次
发布时间:2019-06-12

本文共 1793 字,大约阅读时间需要 5 分钟。

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 4The longest increasing path is [1, 2, 6, 9].Example 2:nums = [  [3,4,5],  [3,2,6],  [2,2,1]]Return 4The longest increasing path is [3, 4, 5, 6]. Moving diagonally is not allowed.

DFS + DP:

use a two dimensional matrix dp[i][j] to store the length of the longest increasing path starting at matrix[i][j]

transferring function is: dp[i][j] = max(dp[i][j], dp[x][y] + 1), where dp[x][y] is its neighbor with matrix[x][y] > matrix[i][j]

Note:

  1. Use matrix[x][y] > matrix[i][j] so we don't need a visited[m][n] array
  2. The key is to cache the distance because it's highly possible to revisit a cell

 

Follow Up: How to get the actual longest increasing path

我的想法:类似, 除了一个dp[i][j]记录longest length以外,另外再用一个matrix pre[i][j]记录(i,j)longest increasing path上一跳位置, 并用一个variable记录最后最长的path的起始位置(第19行每次res更新时更新)。最后通过这个起始位置沿着一个一个上一跳位置,可以求出path

1 public class Solution { 2     int[][] dp; 3     int[][] directions = new int[][]{
{-1,0},{1,0},{0,-1},{0,1}}; 4 int m; 5 int n; 6 7 public int longestIncreasingPath(int[][] matrix) { 8 if (matrix==null || matrix.length==0 || matrix[0].length==0) return 0; 9 m = matrix.length;10 n = matrix[0].length;11 dp = new int[m][n];12 13 int result = 0;14 15 for (int i=0; i
=m || y>=n || matrix[x][y]<=matrix[i][j]) continue;32 dp[i][j] = Math.max(dp[i][j], DFS(x, y, matrix)+1);33 }34 return dp[i][j];35 }36 }

 

转载于:https://www.cnblogs.com/EdwardLiu/p/5156805.html

你可能感兴趣的文章
CP15 协处理器寄存器解读
查看>>
【codeforces 787B】Not Afraid
查看>>
【9111】高精度除法(高精度除高精度)
查看>>
【hihocoder 1312】搜索三·启发式搜索(普通广搜做法)
查看>>
JavaFX中ObservableValue类型
查看>>
杭电 1097 A hard puzzle
查看>>
[转载]INFORMIX锁机制及如何剖析其锁申辩(第二部门)
查看>>
Andriod-项目stymqjlb-学习笔记2-原型
查看>>
Web AppDomain
查看>>
JQuery创建规范插件
查看>>
AD 域服务简介(三)- Java 对 AD 域用户的增删改查操作
查看>>
Unity中Text渐变色,和Text间距
查看>>
P4932 浏览器
查看>>
Concurrency Kit 0.2.13 发布,并发工具包
查看>>
SQL Relay 0.50 发布,数据库负载均衡器
查看>>
Infinispan 5.3.0.Alpha1 发布
查看>>
设计模式学习笔记——原型模式(Prototype)
查看>>
算法普林斯顿
查看>>
Struts2之类范围拦截器和方法拦截器
查看>>
模型层(练习)
查看>>