-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathscs_topdown.java
42 lines (30 loc) · 1.13 KB
/
scs_topdown.java
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
public class scs_topdown {
static int[][] dp = new int[1001][1001];
//Function to find length of the shortest common super-sequence of two strings.
public static int shortestCommonSupersequence(String X,String Y,int m,int n)
{
//Your code here
String res = "";
return (X.length() + Y.length()) - lcs(X,Y);
}
public static int lcs(String s1, String s2){
for(int i = 0 ; i < s1.length() + 1 ; i++){
for(int j = 0 ; j < s2.length() + 1 ; j++){
if(i == 0 || j == 0){
dp[i][j] = 0;
}
}
}
for(int i = 1 ; i < s1.length() + 1 ; i++){
for(int j = 1 ; j < s2.length() + 1 ; j++){
if(s1.charAt(i-1) == s2.charAt(j-1)){
dp[i][j] = 1+ dp[i-1][j-1];
}
else{
dp[i][j] = Math.max(dp[i-1][j] , dp[i][j-1]);
}
}
}
return dp[s1.length()][s2.length()];
}
}