-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLongest_Increasing_Path_In_A_Matrix.Py
More file actions
34 lines (28 loc) · 1.1 KB
/
Longest_Increasing_Path_In_A_Matrix.Py
File metadata and controls
34 lines (28 loc) · 1.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
'''Problem : LONGEST INCREASING PATH IN A MATRIX '''
# CODE :
class Solution(object):
def longestIncreasingPath(self, matrix):
"""
:type matrix: List[List[int]]
:rtype: int
"""
if not matrix:
return 0
def longestpath(matrix, i, j, max_lengths):
if max_lengths[i][j]:
return max_lengths[i][j]
max_depth = 0
directions = [(0, -1), (0, 1), (-1, 0), (1, 0)]
for d in directions:
x, y = i + d[0], j + d[1]
if 0 <= x < len(matrix) and 0 <= y < len(matrix[0]) and \
matrix[x][y] < matrix[i][j]:
max_depth = max(max_depth, longestpath(matrix, x, y, max_lengths));
max_lengths[i][j] = max_depth + 1
return max_lengths[i][j]
res = 0
max_lengths = [[0 for _ in range(len(matrix[0]))] for _ in range(len(matrix))]
for i in range(len(matrix)):
for j in range(len(matrix[0])):
res = max(res, longestpath(matrix, i, j, max_lengths))
return res