Solution Longest Common Substring
Problem Statement
Given two strings 's1' and 's2', find the length of the longest substring which is common in both the strings.
Example 1:
Input: s1 = "abdca"
s2 = "cbda"
Output: 2
Explanation: The longest common substring is "bd".
Example 2:
Input: s1 = "passport"
s2 = "ppsspt"
Output: 3
Explanation: The longest common substring is "ssp".
Constraints:
- 1 <= s1.length, s2.length <= 1000`
s1ands2consist of only lowercase English characters.
Basic Solution
A basic brute-force solution could be to try all substrings of 's1' and 's2' to find the longest common one. We can start matching both the strings one character at a time, so we have two options at any step:
- If the strings have a matching character, we can recursively match for the remaining lengths and keep a track of the current matching length.
- If the strings don't match, we start two new recursive calls by skipping one character separately from each string and reset the matching length.
The length of the Longest Common Substring (LCS) will be the maximum number returned by the three recurse calls in the above two options.
Code
Here is the code:
class Solution {
public int findLCSLength(String s1, String s2) {
return findLCSLengthRecursive(s1, s2, 0, 0, 0);
}
private int findLCSLengthRecursive(
String s1,
String s2,
int i1,
int i2,
int count
) {
if (i1 == s1.length() || i2 == s2.length()) return count;
if (s1.charAt(i1) == s2.charAt(i2)) count = findLCSLengthRecursive(
s1,
s2,
i1 + 1,
i2 + 1,
count + 1
);
int c1 = findLCSLengthRecursive(s1, s2, i1, i2 + 1, 0);
int c2 = findLCSLengthRecursive(s1, s2, i1 + 1, i2, 0);
return Math.max(count, Math.max(c1, c2));
}
public static void main(String[] args) {
Solution lcs = new Solution();
System.out.println(lcs.findLCSLength("abdca", "cbda"));
System.out.println(lcs.findLCSLength("passport", "ppsspt"));
}
}
Because of the three recursive calls, the time complexity of the above algorithm is exponential
Top-down Dynamic Programming with Memoization
We can use an array to store the already solved subproblems.
The three changing values to our recursive function are the two indexes (i1 and i2) and the 'count'. Therefore, we can store the results of all subproblems in a three-dimensional array. (Another alternative could be to use a hash-table whose key would be a string (i1 + "|" i2 + "|" + count)).
Code
Here is the code:
class Solution {
public int findLCSLength(String s1, String s2) {
int maxLength = Math.min(s1.length(), s2.length());
Integer[][][] dp = new Integer[s1.length()][s2.length()][maxLength];
return findLCSLengthRecursive(dp, s1, s2, 0, 0, 0);
}
private int findLCSLengthRecursive(Integer[][][] dp, String s1, String s2, int i1, int i2, int count) {
if(i1 == s1.length() || i2 == s2.length())
return count;
if(dp[i1][i2][count] == null) {
int c1 = count;
if(s1.charAt(i1) == s2.charAt(i2))
c1 = findLCSLengthRecursive(dp, s1, s2, i1+1, i2+1, count+1);
int c2 = findLCSLengthRecursive(dp, s1, s2, i1, i2+1, 0);
int c3 = findLCSLengthRecursive(dp, s1, s2, i1+1, i2, 0);
dp[i1][i2][count] = Math.max(c1, Math.max(c2, c3));
}
return dp[i1][i2][count];
}
public static void main(String[] args) {
Solution lcs = new Solution();
System.out.println(lcs.findLCSLength("abdca", "cbda"));
System.out.println(lcs.findLCSLength("passport", "ppsspt"));
}
}
Bottom-up Dynamic Programming
Since we want to match all the substrings of the given two strings, we can use a two-dimensional array to store our results. The lengths of the two strings will define the size of the two dimensions of the array. So for every index 'i' in string 's1' and 'j' in string 's2', we have two options:
- If the character at
s1[i]matchess2[j], the length of the common substring would be one plus the length of the common substring tilli-1andj-1indexes in the two strings. - If the character at the
s1[i]does not matchs2[j], we don't have any common substring.
So our recursive formula would be:
if s1[i] == s2[j] dp[i][j] = 1 + dp[i-1][j-1] else dp[i][j] = 0
Let's draw this visually for "abcda" and "cbda". Starting with a substring of zero lengths, if any one of the string has zero length, then the common substring will be of zero length:
![i:0, j:0-5 and i:0-4, j:0 => dp[i][j] = 0, as we don't have any common substring when one of the string is of zero length](/assets/d1c232b329667018.webp)
![i:1, j:1 => dp[i][j] = 0, as s1[i] != s2[j]](/assets/70831f85e4d15465.webp)
![i:1, j:2 => dp[i][j] = 0, as s1[i] != s2[j]](/assets/9445f30bc70a8d47.webp)
![i:1, j:4 => dp[i][j] = 1 + dp[i-1][j-1], as s1[i] == s2[j]](/assets/63d8c6b40e0fdad2.webp)
![i:2, j:2=> dp[i][j] = 1 + dp[i-1][j-1], as s1[i] == s2[j]](/assets/c84a96f898972eba.webp)
![i:2, j:3-5 => dp[i][j] = 0, as s1[i] != s2[j]](/assets/4a4469b3d338e328.webp)
![i:3, j:3=> dp[i][j] = 1 + dp[i-1][j-1], as s1[i] == s2[j]](/assets/71722a5a83db383e.webp)
![i:3, j:4-5=> dp[i][j] = 0, as s1[i] != s2[j]](/assets/84bdf8a8eb21cfc6.webp)
![i:4, j:5=> dp[i][j] = 1 + dp[i-1][j-1], as s1[i] == s2[j]](/assets/a115fd2bf1a9a7e4.webp)
From the above visualization, we can clearly see that the longest common substring is of length '2'-- as shown by dp[3][3].
Here is the code for our bottom-up dynamic programming approach:
class Solution {
public int findLCSLength(String s1, String s2) {
int[][] dp = new int[s1.length() + 1][s2.length() + 1];
int maxLength = 0;
for (int i = 1; i <= s1.length(); i++) {
for (int j = 1; j <= s2.length(); j++) {
if (s1.charAt(i - 1) == s2.charAt(j - 1)) {
dp[i][j] = 1 + dp[i - 1][j - 1];
maxLength = Math.max(maxLength, dp[i][j]);
}
}
}
return maxLength;
}
public static void main(String[] args) {
Solution lcs = new Solution();
System.out.println(lcs.findLCSLength("abdca", "cbda"));
System.out.println(lcs.findLCSLength("passport", "ppsspt"));
}
}
The time and space complexity of the above algorithm is
Challenge
Can we further improve our bottom-up DP solution? Can you find an algorithm that has
Hint
We only need one previous row to find the optimal solution!
class Solution {
static int findLCSLength(String s1, String s2) {
int[][] dp = new int[2][s2.length() + 1];
int maxLength = 0;
for (int i = 1; i <= s1.length(); i++) {
for (int j = 1; j <= s2.length(); j++) {
dp[i % 2][j] = 0;
if (s1.charAt(i - 1) == s2.charAt(j - 1)) {
dp[i % 2][j] = 1 + dp[(i - 1) % 2][j - 1];
maxLength = Math.max(maxLength, dp[i % 2][j]);
}
}
}
return maxLength;
}
public static void main(String[] args) {
Solution lcs = new Solution();
System.out.println(lcs.findLCSLength("abdca", "cbda"));
System.out.println(lcs.findLCSLength("passport", "ppsspt"));
}
}
🤖 Don't fully get this? Learn it with Claude
Stuck on Solution Longest Common Substring? Open Claude, copy a block below, and it'll teach you this exact concept — visually and interactively.
Progressively stronger hints — you still solve it.
I'm working on the problem **Solution Longest Common Substring** (DSA). Give me a HINT LADDER: start with the tiniest nudge, then wait. Only reveal the next, stronger hint when I ask. Do NOT show the full solution unless I type 'show solution'. Keep me doing the thinking. If you're unsure or a claim isn't standard, say so and reason from first principles instead of guessing.
See the technique, not just code.
Explain the optimal approach to **Solution Longest Common Substring** with a VISUAL walkthrough: trace it on a small concrete example using ASCII art / a step-by-step diagram, narrate what changes each step, then give time & space complexity with a one-line derivation. If you're unsure or a claim isn't standard, say so and reason from first principles instead of guessing.
Catch bugs, edge cases, sub-optimality.
I'll paste my solution to **Solution Longest Common Substring**. Review it for correctness, missed edge cases, and time/space complexity, then coach me toward the optimal — don't just rewrite it. Ask me to paste my code now. If you're unsure or a claim isn't standard, say so and reason from first principles instead of guessing.
Lock in recognition with look-alikes.
Give me 2 problems that use the SAME underlying pattern as **Solution Longest Common Substring**. For each, let me attempt first, then review my answer and name the trigger signal that reveals the pattern. If you're unsure or a claim isn't standard, say so and reason from first principles instead of guessing.