Off-by-one on range boundaries
Wrong move: Loop endpoints miss first/last candidate.
Usually fails on: Fails on minimal arrays and exact-boundary answers.
Fix: Re-derive loops from inclusive/exclusive ranges before coding.
Break down a hard problem into reliable checkpoints, edge-case handling, and complexity trade-offs.
Given an array of strings words, return the smallest string that contains each string in words as a substring. If there are multiple valid strings of the smallest length, return any of them.
You may assume that no string in words is a substring of another string in words.
Example 1:
Input: words = ["alex","loves","leetcode"] Output: "alexlovesleetcode" Explanation: All permutations of "alex","loves","leetcode" would also be accepted.
Example 2:
Input: words = ["catg","ctaagt","gcta","ttca","atgcatc"] Output: "gctaagttcatgcatc"
Constraints:
1 <= words.length <= 121 <= words[i].length <= 20words[i] consists of lowercase English letters.words are unique.Problem summary: Given an array of strings words, return the smallest string that contains each string in words as a substring. If there are multiple valid strings of the smallest length, return any of them. You may assume that no string in words is a substring of another string in words.
Start with the most direct exhaustive search. That gives a correctness anchor before optimizing.
Pattern signal: Array · Dynamic Programming · Bit Manipulation
["alex","loves","leetcode"]
["catg","ctaagt","gcta","ttca","atgcatc"]
maximum-rows-covered-by-columns)find-the-minimum-cost-array-permutation)find-the-shortest-superstring-ii)Source-backed implementations are provided below for direct study and interview prep.
// Accepted solution for LeetCode #943: Find the Shortest Superstring
class Solution {
public String shortestSuperstring(String[] words) {
int n = words.length;
int[][] g = new int[n][n];
for (int i = 0; i < n; ++i) {
String a = words[i];
for (int j = 0; j < n; ++j) {
String b = words[j];
if (i != j) {
for (int k = Math.min(a.length(), b.length()); k > 0; --k) {
if (a.substring(a.length() - k).equals(b.substring(0, k))) {
g[i][j] = k;
break;
}
}
}
}
}
int[][] dp = new int[1 << n][n];
int[][] p = new int[1 << n][n];
for (int i = 0; i < 1 << n; ++i) {
Arrays.fill(p[i], -1);
for (int j = 0; j < n; ++j) {
if (((i >> j) & 1) == 1) {
int pi = i ^ (1 << j);
for (int k = 0; k < n; ++k) {
if (((pi >> k) & 1) == 1) {
int v = dp[pi][k] + g[k][j];
if (v > dp[i][j]) {
dp[i][j] = v;
p[i][j] = k;
}
}
}
}
}
}
int j = 0;
for (int i = 0; i < n; ++i) {
if (dp[(1 << n) - 1][i] > dp[(1 << n) - 1][j]) {
j = i;
}
}
List<Integer> arr = new ArrayList<>();
arr.add(j);
for (int i = (1 << n) - 1; p[i][j] != -1;) {
int k = i;
i ^= (1 << j);
j = p[k][j];
arr.add(j);
}
Set<Integer> vis = new HashSet<>(arr);
for (int i = 0; i < n; ++i) {
if (!vis.contains(i)) {
arr.add(i);
}
}
Collections.reverse(arr);
StringBuilder ans = new StringBuilder(words[arr.get(0)]);
for (int i = 1; i < n; ++i) {
int k = g[arr.get(i - 1)][arr.get(i)];
ans.append(words[arr.get(i)].substring(k));
}
return ans.toString();
}
}
// Accepted solution for LeetCode #943: Find the Shortest Superstring
func shortestSuperstring(words []string) string {
n := len(words)
g := make([][]int, n)
for i, a := range words {
g[i] = make([]int, n)
for j, b := range words {
if i != j {
for k := min(len(a), len(b)); k > 0; k-- {
if a[len(a)-k:] == b[:k] {
g[i][j] = k
break
}
}
}
}
}
dp := make([][]int, 1<<n)
p := make([][]int, 1<<n)
for i := 0; i < 1<<n; i++ {
dp[i] = make([]int, n)
p[i] = make([]int, n)
for j := 0; j < n; j++ {
p[i][j] = -1
if ((i >> j) & 1) == 1 {
pi := i ^ (1 << j)
for k := 0; k < n; k++ {
if ((pi >> k) & 1) == 1 {
v := dp[pi][k] + g[k][j]
if v > dp[i][j] {
dp[i][j] = v
p[i][j] = k
}
}
}
}
}
}
j := 0
for i := 0; i < n; i++ {
if dp[(1<<n)-1][i] > dp[(1<<n)-1][j] {
j = i
}
}
arr := []int{j}
vis := make([]bool, n)
vis[j] = true
for i := (1 << n) - 1; p[i][j] != -1; {
k := i
i ^= (1 << j)
j = p[k][j]
arr = append(arr, j)
vis[j] = true
}
for i := 0; i < n; i++ {
if !vis[i] {
arr = append(arr, i)
}
}
ans := &strings.Builder{}
ans.WriteString(words[arr[n-1]])
for i := n - 2; i >= 0; i-- {
k := g[arr[i+1]][arr[i]]
ans.WriteString(words[arr[i]][k:])
}
return ans.String()
}
# Accepted solution for LeetCode #943: Find the Shortest Superstring
class Solution:
def shortestSuperstring(self, words: List[str]) -> str:
n = len(words)
g = [[0] * n for _ in range(n)]
for i, a in enumerate(words):
for j, b in enumerate(words):
if i != j:
for k in range(min(len(a), len(b)), 0, -1):
if a[-k:] == b[:k]:
g[i][j] = k
break
dp = [[0] * n for _ in range(1 << n)]
p = [[-1] * n for _ in range(1 << n)]
for i in range(1 << n):
for j in range(n):
if (i >> j) & 1:
pi = i ^ (1 << j)
for k in range(n):
if (pi >> k) & 1:
v = dp[pi][k] + g[k][j]
if v > dp[i][j]:
dp[i][j] = v
p[i][j] = k
j = 0
for i in range(n):
if dp[-1][i] > dp[-1][j]:
j = i
arr = [j]
i = (1 << n) - 1
while p[i][j] != -1:
i, j = i ^ (1 << j), p[i][j]
arr.append(j)
arr = arr[::-1]
vis = set(arr)
arr.extend([j for j in range(n) if j not in vis])
ans = [words[arr[0]]] + [words[j][g[i][j] :] for i, j in pairwise(arr)]
return ''.join(ans)
// Accepted solution for LeetCode #943: Find the Shortest Superstring
/**
* [0943] Find the Shortest Superstring
*
* Given an array of strings words, return the smallest string that contains each string in words as a substring. If there are multiple valid strings of the smallest length, return any of them.
* You may assume that no string in words is a substring of another string in words.
*
* Example 1:
*
* Input: words = ["alex","loves","leetcode"]
* Output: "alexlovesleetcode"
* Explanation: All permutations of "alex","loves","leetcode" would also be accepted.
*
* Example 2:
*
* Input: words = ["catg","ctaagt","gcta","ttca","atgcatc"]
* Output: "gctaagttcatgcatc"
*
*
* Constraints:
*
* 1 <= words.length <= 12
* 1 <= words[i].length <= 20
* words[i] consists of lowercase English letters.
* All the strings of words are unique.
*
*/
pub struct Solution {}
// problem: https://leetcode.com/problems/find-the-shortest-superstring/
// discuss: https://leetcode.com/problems/find-the-shortest-superstring/discuss/?currentPage=1&orderBy=most_votes&query=
// submission codes start here
impl Solution {
// Credit: https://leetcode.com/problems/find-the-shortest-superstring/solutions/1226857/rust-translated-dp-solution/
pub fn shortest_superstring(words: Vec<String>) -> String {
let n = words.len();
let mut graph = vec![vec![0; n]; n];
for i in 0..n {
for j in 0..n {
if i != j {
let mut k = words[j].len();
while !words[i].ends_with(&words[j][..k]) {
k -= 1;
}
graph[i][j] = k;
}
}
}
let mut dp = vec![vec![0; n]; 1 << n];
let mut parent = vec![vec![None; n]; 1 << n];
for mask in 0..1 << n {
for b in 0..n {
if mask >> b & 1 == 0 {
continue;
}
let prev = mask ^ 1 << b;
for (i, row) in graph.iter().enumerate() {
if prev >> i & 1 == 0 {
continue;
}
let val = dp[prev][i] + row[b];
if val > dp[mask][b] {
dp[mask][b] = val;
parent[mask][b] = Some(i);
}
}
}
}
let mut mask = (1 << n) - 1;
let mut perm = Vec::with_capacity(n);
let mut seen = vec![false; n];
if let Some(mut p) = (0..n).max_by_key(|&i| dp[(1 << n) - 1][i]) {
loop {
perm.push(p);
seen[p] = true;
if let Some(t) = parent[mask][p] {
mask ^= 1 << p;
p = t;
} else {
break;
}
}
}
perm.extend((0..n).filter(|&i| !seen[i]));
(1..perm.len())
.rev()
.fold(words[perm[n - 1]].clone(), |acc, i| {
let overlap = graph[perm[i]][perm[i - 1]];
acc + &words[perm[i - 1]][overlap..]
})
}
}
// submission codes end
#[cfg(test)]
mod tests {
use super::*;
#[test]
#[ignore]
fn test_0943_example_1() {
let words = vec_string!["alex", "loves", "leetcode"];
let result = "alexlovesleetcode".to_string();
assert_eq!(Solution::shortest_superstring(words), result);
}
#[test]
#[ignore]
fn test_0943_example_2() {
let words = vec_string!["catg", "ctaagt", "gcta", "ttca", "atgcatc"];
let result = "gctaagttcatgcatc".to_string();
assert_eq!(Solution::shortest_superstring(words), result);
}
}
// Accepted solution for LeetCode #943: Find the Shortest Superstring
// Auto-generated TypeScript example from java.
function exampleSolution(): void {
}
// Reference (java):
// // Accepted solution for LeetCode #943: Find the Shortest Superstring
// class Solution {
// public String shortestSuperstring(String[] words) {
// int n = words.length;
// int[][] g = new int[n][n];
// for (int i = 0; i < n; ++i) {
// String a = words[i];
// for (int j = 0; j < n; ++j) {
// String b = words[j];
// if (i != j) {
// for (int k = Math.min(a.length(), b.length()); k > 0; --k) {
// if (a.substring(a.length() - k).equals(b.substring(0, k))) {
// g[i][j] = k;
// break;
// }
// }
// }
// }
// }
// int[][] dp = new int[1 << n][n];
// int[][] p = new int[1 << n][n];
// for (int i = 0; i < 1 << n; ++i) {
// Arrays.fill(p[i], -1);
// for (int j = 0; j < n; ++j) {
// if (((i >> j) & 1) == 1) {
// int pi = i ^ (1 << j);
// for (int k = 0; k < n; ++k) {
// if (((pi >> k) & 1) == 1) {
// int v = dp[pi][k] + g[k][j];
// if (v > dp[i][j]) {
// dp[i][j] = v;
// p[i][j] = k;
// }
// }
// }
// }
// }
// }
// int j = 0;
// for (int i = 0; i < n; ++i) {
// if (dp[(1 << n) - 1][i] > dp[(1 << n) - 1][j]) {
// j = i;
// }
// }
// List<Integer> arr = new ArrayList<>();
// arr.add(j);
// for (int i = (1 << n) - 1; p[i][j] != -1;) {
// int k = i;
// i ^= (1 << j);
// j = p[k][j];
// arr.add(j);
// }
// Set<Integer> vis = new HashSet<>(arr);
// for (int i = 0; i < n; ++i) {
// if (!vis.contains(i)) {
// arr.add(i);
// }
// }
// Collections.reverse(arr);
// StringBuilder ans = new StringBuilder(words[arr.get(0)]);
// for (int i = 1; i < n; ++i) {
// int k = g[arr.get(i - 1)][arr.get(i)];
// ans.append(words[arr.get(i)].substring(k));
// }
// return ans.toString();
// }
// }
Use this to step through a reusable interview workflow for this problem.
Pure recursion explores every possible choice at each step. With two choices per state (take or skip), the decision tree has 2ⁿ leaves. The recursion stack uses O(n) space. Many subproblems are recomputed exponentially many times.
Each cell in the DP table is computed exactly once from previously solved subproblems. The table dimensions determine both time and space. Look for the state variables — each unique combination of state values is one cell. Often a rolling array can reduce space by one dimension.
Review these before coding to avoid predictable interview regressions.
Wrong move: Loop endpoints miss first/last candidate.
Usually fails on: Fails on minimal arrays and exact-boundary answers.
Fix: Re-derive loops from inclusive/exclusive ranges before coding.
Wrong move: An incomplete state merges distinct subproblems and caches incorrect answers.
Usually fails on: Correctness breaks on cases that differ only in hidden state.
Fix: Define state so each unique subproblem maps to one DP cell.