forked from keshavsingh4522/hacktoberfest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathshortestcommonsupersequenceprint.cpp
80 lines (76 loc) · 1.27 KB
/
shortestcommonsupersequenceprint.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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
/*concept is from printing the lcs. the key difference is that after one of i or j reaches zero, we have to
add the left out characters of the other(which is not zero)*/
#include<bits/stdc++.h>
using namespace std;
string lcs(string x, string y, int m, int n)
{
int t[m + 1][n + 1];
for (int i = 0; i <= n; i++)
t[0][i] = 0;
for (int i = 0; i <= m; i++)
t[i][0] = 0;
for (int i = 1; i <= m; i++)
{
for (int j = 1; j <= n; j++)
{
if (x[i - 1] == y[j - 1])
t[i][j] = 1 + t[i - 1][j - 1];
else
t[i][j] = max(t[i - 1][j], t[i][j - 1]);
}
}
string s = "";
int i = m;
int j = n;
while (i > 0 && j > 0)
{
if (x[i - 1] == y[j - 1])
{
s = s + x[i - 1];
i--;
j--;
}
else
{
if (t[i][j - 1] > t[i - 1][j])
{
s = s + y[j - 1];
j--;
}
else
{
s = s + x[i - 1];
i--;
}
}
}
while (i > 0)
{
s = s + x[i - 1];
i--;
}
while (j > 0)
{
s = s + y[j - 1];
j--;
}
reverse(s.begin(), s.end());
return s;
}
int main()
{
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
int t;
cin >> t;
while (t--)
{
string x;
cin >> x;
string y;
cin >> y;
cout << lcs(x, y, x.length(), y.length()) << "\n";
}
return 0;
}