-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlongest_common_subsequence.py
More file actions
48 lines (37 loc) · 1.18 KB
/
longest_common_subsequence.py
File metadata and controls
48 lines (37 loc) · 1.18 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
"""
A subsequence is a sequence that can be derived from another
sequence by deleting some or no elements without changing the
order of the remaining elements.
For example, 'abd' is a subsequence of 'abcd' whereas 'adc' is not
Given 2 strings containing lowercase english alphabets, find the length
of the Longest Common Subsequence (L.C.S.).
Example:
Input: 'abcdgh'
'aedfhr'
Output: 3
Explanation: The longest subsequence common to both the string is "adh"
Time Complexity : O(M*N)
Space Complexity : O(M*N), where M and N are the lengths of the 1st and 2nd string
respectively.
"""
def longest_common_subsequence(s1, s2):
"""
:param s1: string
:param s2: string
:return: int
"""
m = len(s1)
n = len(s2)
dp = [[0] * (n + 1) for i in range(m + 1)]
"""
dp[i][j] : contains length of LCS of s1[0..i-1] and s2[0..j-1]
"""
for i in range(m + 1):
for j in range(n + 1):
if i == 0 or j == 0:
dp[i][j] = 0
elif s1[i - 1] == s2[j - 1]:
dp[i][j] = dp[i - 1][j - 1] + 1
else:
dp[i][j] = max(dp[i - 1][j], dp[i][j - 1])
return dp[m][n]