-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathlcs_td.py
56 lines (42 loc) · 1.18 KB
/
lcs_td.py
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
52
53
54
55
56
import collections
from typing import List
tests = {
1: ("abcde", "ace"),
2: ("abc", "abc"),
3: ("abc", "def")
}
res = {
1: 3,
2: 3,
3: 0
}
def check_result(index: int, output: int):
if index > len(tests):
raise RuntimeError(f'Failed to get {index}th case')
return res.get(index, False) == output
def LCS(str1: str, str2: str) -> int:
dp = [[-1 for _ in range(len(str2) + 1)]
for _ in range(len(str1) + 1)]
def LCSRec(i, j):
nonlocal str1, str2, dp
if i >= len(str1) or j >= len(str2):
return 0
if dp[i][j] != -1:
return dp[i][j]
if str1[i] == str2[j]:
dp[i][j] = 1 + LCSRec(i + 1, j + 1)
else:
dp[i][j] = max(LCSRec(i + 1, j),
LCSRec(i, j + 1))
return dp[i][j]
return LCSRec(0, 0)
def main():
for index, data in tests.items():
text1, text2 = data[0], data[1]
res = LCS(text1, text2)
if check_result(index, res):
print(f'Test case {index} is correct: {res}')
else:
print(f'Test case {index} is failed: {res}')
if __name__ == '__main__':
main()