-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLCS_TopDown.cpp
60 lines (55 loc) · 1.33 KB
/
LCS_TopDown.cpp
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
57
58
59
60
#include <iostream>
#include <cstdio>
#include <cstdlib>
#include <algorithm>
#include <cmath>
#include <vector>
#include <list>
#include <set>
#include <map>
#include <unordered_set>
#include <unordered_map>
#include <queue>
#include <ctime>
#include <cassert>
#include <complex>
#include <stack>
#include <string>
#include <cstring>
#include <chrono>
#include <random>
#include <bitset>
#include <sstream>
#include <iomanip>
using namespace std;
vector<vector<int> > dp(8, vector<int>(8, 0));
string result = "";
int solve(string s, string t, int i, int j)
{
if (i == s.size() || j == t.size())
{
return 0;
}
if (dp[i][j] != 0)
return dp[i][j];
//Considering the case where the characters are equal we will call the next character in line
if (s[i] == t[j])
{
result += s[i];
dp[i][j] = max(dp[i][j], solve(s, t, i + 1, j + 1) + 1);
}
else
{
//considering the case where the characters are not equal in that case we will skip the character one by one and find the maximum length in both the cases
dp[i][j] = max(dp[i][j], solve(s, t, i + 1, j));
dp[i][j] = max(dp[i][j], solve(s, t, i, j + 1));
}
return dp[i][j];
}
int32_t main()
{
string s = "ABCDXYZ";
string t = "ABEDG";
cout << solve(s, t, 0, 0) << endl;
cout << result << endl;
}