Grokking Dynamic Programming Patterns for Coding Interviews
Ask Author
Back to course home

0% completed

Vote For New Content
Solution: Shortest Common Super-sequence
Table of Contents

Contents are not accessible

Contents are not accessible

Contents are not accessible

Contents are not accessible

Contents are not accessible

Problem Statement

Given two sequences 's1' and 's2', write a method to find the length of the shortest sequence which has 's1' and 's2' as subsequences.

Example 2:

Input: s1: "abcf" s2:"bdcf" 
Output: 5
Explanation: The shortest common super-sequence (SCS) is "abdcf". 

Example 2:

Input: s1: "dynamic" s2:"programming" 
Output: 15
Explanation: The SCS is "dynprogrammicng". 

Constraints:

  • 1 <= s1.length, s2.length <= 1000
  • s1 and s2 consist of lowercase English letters.

Basic Solution

The problem is quite similar to the "Longest Common Subsequence".

A basic brute-force solution could be to try all the super-sequences of the given sequences. We can process both of the sequences one character at a time, so at any step, we must choose between:

  1. If the sequences have a matching character, we can skip one character from both the sequences and make a recursive call for the remaining lengths to get SCS.
  2. If the strings don’t match, we start two new recursive calls by skipping one character separately from each string. The minimum of these two recursive calls will have our answer.

Here is the code:

Python3
Python3

. . . .

The time complexity of the above algorithm is exponential O(2^{n+m}), where 'n' and 'm' are the lengths of the input sequences. The space complexity is O(n+m) which is used to store the recursion stack.

Top-down Dynamic Programming with Memoization

Let's use memoization to overcome the overlapping subproblems.

The two changing values to our recursive function are the two indexes, i1 and i2. Therefore, we can store the results of all the subproblems in a two-dimensional array. (Another alternative could be to use a hash-table whose key would be a string (i1 + “|” + i2)).

Code

Here is the code:

Python3
Python3

. . . .

Bottom-up Dynamic Programming

Since we want to match all the subsequences of the given sequences, we can use a two-dimensional array to store our results. The lengths of the two strings will define the size of the array’s dimensions. So for every index ‘i’ in sequence ‘s1’ and ‘j’ in sequence ‘s2’, we will choose one of the following two options:

  1. If the character s1[i] matches s2[j], the length of the SCS would be the one plus the length of the SCS till i-1 and j-1 indexes in the two strings.
  2. If the character s1[i] does not match s2[j], we will consider two SCS: one without s1[i] and one without s2[j]. Our required SCS length will be the shortest of these two super-sequences plus one.

So our recursive formula would be:

if s1[i] == s2[j] 
  dp[i][j] = 1 + dp[i-1][j-1]
else 
  dp[i][j] = 1 + min(dp[i-1][j], dp[i][j-1]) 

Let’s draw this visually for “abcf” and “bdcf”. Starting with a subsequence of zero length. As we can see, if any strings have zero length, then the shortest super-sequence would be equal to the length of the other string:

if one of the strings is of zero length, SCS would be equal to the length of the other string
if one of the strings is of zero length, SCS would be equal to the length of the other string
i=1, j=1 => since s1[i-1] != s2[j-1], therefore dp[i][j] = 1 + min(dp[i-1][j], dp[i][j-1])
i=1, j=1 => since s1[i-1] != s2[j-1], therefore dp[i][j] = 1 + min(dp[i-1][j], dp[i][j-1])
i=1, j=3-4 => since s1[i] != s2[j], therefore dp[i][j] = 1 + min(dp[i-1][j], dp[i][j-1])
i=1, j=3-4 => since s1[i] != s2[j], therefore dp[i][j] = 1 + min(dp[i-1][j], dp[i][j-1])
i=2, j=3-4 => since s1[i] != s2[j], therefore dp[i][j] = 1 + min(dp[i-1][j], dp[i][j-1])
i=2, j=3-4 => since s1[i] != s2[j], therefore dp[i][j] = 1 + min(dp[i-1][j], dp[i][j-1])
i=3, j=4 => since s1[i-1] == s2[j-1], therefore dp[i][j] = 1 + dp[i-1][j-1]
i=3, j=4 => since s1[i-1] == s2[j-1], therefore dp[i][j] = 1 + dp[i-1][j-1]
i=4, j=1-3 => since s1[i] != s2[j], therefore dp[i][j] = 1 + min(dp[i-1][j], dp[i][j-1])
i=4, j=1-3 => since s1[i] != s2[j], therefore dp[i][j] = 1 + min(dp[i-1][j], dp[i][j-1])
i=4, j=4 => since s1[i-1] == s2[j-1], therefore dp[i][j] = 1 + dp[i-1][j-1]
i=4, j=4 => since s1[i-1] == s2[j-1], therefore dp[i][j] = 1 + dp[i-1][j-1]

From the above visualization, we can clearly see that the longest increasing subsequence is of length '5' -- as shown by dp[4][4].

Code

Here is the code for our bottom-up dynamic programming approach:

Python3
Python3

. . . .

The time and space complexity of the above algorithm is O(n*m).

.....

.....

.....

Like the course? Get enrolled and start learning!

Table of Contents

Contents are not accessible

Contents are not accessible

Contents are not accessible

Contents are not accessible

Contents are not accessible