-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathF-LCS.cpp
61 lines (59 loc) · 1.22 KB
/
F-LCS.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
61
#include<bits/stdc++.h>
#define int long long
#define MAX 100001
using namespace std;
string LCS(string a,string b)
{
int dp[a.size()+1][b.size()+1];
memset(dp,0,sizeof(dp));
char dp2[a.size()+1][b.size()+1];
for(int i=1;i<=a.size();++i)
{
for(int j=1;j<=b.size();++j)
{
if(a[i-1] == b[j-1])
{
dp[i][j] = dp[i-1][j-1]+1;
dp2[i][j] = 'D';
}
else if(dp[i-1][j] > dp[i][j-1])
{
dp[i][j] = dp[i-1][j];
dp2[i][j] = 'U';
}
else
{
dp[i][j] = dp[i][j-1];
dp2[i][j] = 'L';
}
}
}
int i=a.size(),j=b.size();
string str= "";
while(i!=0 && j!=0)
{
if(dp2[i][j] == 'D')
{
i--;
j--;
str += a[i];
}
else if(dp2[i][j] == 'U')
{
i--;
}
else
{
j--;
}
}
reverse(str.begin(),str.end());
return str;
}
int32_t main()
{
string a,b;
cin>>a>>b;
cout << LCS (a,b) <<endl;
return 0;
}