-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlongest_increasing_subseq.py
More file actions
51 lines (33 loc) · 1.01 KB
/
longest_increasing_subseq.py
File metadata and controls
51 lines (33 loc) · 1.01 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
# Given an integer array nums, return the length of the longest strictly increasing subsequence.
def solution(nums):
maxLen = 0
cache = {}
def dfs(prev, curr, seq):
if curr >= len(nums):
return 0
if (prev,curr) in cache:
return cache[(prev,curr)]
res = 0
if nums[curr] > nums[prev]:
res = 1 + dfs(curr, curr+1, seq)
else:
res = dfs(prev, curr+1)
cache[(prev,curr)] = res
return res
for i in range(len(nums)):
res = 1 + dfs(i, i+1)
maxLen = max(maxLen, res)
return maxLen
# Example 1:
# Input: nums = [10,9,2,5,3,7,101,18]
# Output: 4
# Explanation: The longest increasing subsequence is [2,3,7,101], therefore the length is 4.
print(solution([10,9,2,5,3,7,101,18]))
# Example 2:
# Input: nums = [0,1,0,3,2,3]
# Output: 4
print(solution([0,1,0,3,2,3]))
# Example 3:
# Input: nums = [7,7,7,7,7,7,7]
# Output: 1
print(solution([7,7,7,7,7,7,7]))