forked from HarshCasper/NeoAlgo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathshortest_common_superstring.cpp
57 lines (51 loc) · 1.37 KB
/
shortest_common_superstring.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
/*
This problem will be solved using dp.
We will be given two strings and we have to print the
shortest string that has both X and Y as subsequences.
If multiple shortest supersequence exists, print any one of them.
*/
#include <iostream>
using namespace std;
int t[1001][1001];
int longestSubsequence(string X,string Y,int m,int n){
// if length of any string is 0 then we cannot find common string
for(int i=0;i<m+1;i++){
for(int j=0;j<n+1;j++){
if(i==0 || j==0)
t[i][j] = 0;
}
}
for(int i=1;i<m+1;i++){
for(int j=1;j<n+1;j++){
//if letters of both string are equal then we will decrease row and column both by 1
if(X[i-1] == Y[j-1]){
t[i][j] = t[i-1][j-1] + 1;
}
//if letters of both string are not equal then first we will decrease row by 1 and then column by 1 and find maximum value b/w two
else{
t[i][j] = max(t[i-1][j], t[i][j-1]);
}
}
}
return m + n - t[m][n];
}
int main() {
string X,Y;
cin>>X>>Y;
int m = X.length();
int n = Y.length();
//memset(t,-1,sizeof(t));
cout<<longestSubsequence(X,Y,m,n);
return 0;
}
/*
Input -
Enter string X and string Y -
geek
eke
Output -
Length of Shortest Common Superstring -
5
Time Complexity - O(m*n)
Space Complexity - O(m*n)
*/