Question -> Shortest Common Supersequence
class Solution {
public String shortestCommonSupersequence(String str1, String str2) {
int m = str1.length();
int n = str2.length();
int[][] dp = new int[m+1][n+1];
// base case
for(int i=0; i<=m; i++) dp[i][0] = 0;
for(int i=0; i<=n; i++) dp[0][n] = 0;
for(int i=1; i<=m; i++) {
for(int j=1; j<=n; j++) {
if(str1.charAt(i-1) == str2.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]);
}
}
}
StringBuilder sb = new StringBuilder();
int i=m, j=n;
while(i>0 && j>0) {
if(str1.charAt(i-1) == str2.charAt(j-1)) {
sb.append(str1.charAt(i-1));
i--;
j--;
} else if(dp[i-1][j] > dp[i][j-1]) {
sb.append(str1.charAt(i-1));
i--;
} else {
sb.append(str2.charAt(j-1));
j--;
}
}
while(i>0) {
sb.append(str1.charAt(i-1));
i--;
}
while(j>0) {
sb.append(str2.charAt(j-1));
j--;
}
return sb.reverse().toString();
}
}
Time Complexity
: O(M*N)
Space Complexity
: O(M*N)
Video Explanation -> Shortest Common Supersequence