Given an array of strings words (without duplicates), return all the concatenated words in the given list ofwords.
A concatenated word is defined as a string that is comprised entirely of at least two shorter words (not necessarily distinct) in the given array.
Example 1:
Input: words = ["cat","cats","catsdogcats","dog","dogcatsdog","hippopotamuses","rat","ratcatdogcat"]
Output: ["catsdogcats","dogcatsdog","ratcatdogcat"]
Explanation: "catsdogcats" can be concatenated by "cats", "dog" and "cats";
"dogcatsdog" can be concatenated by "dog", "cats" and "dog";
"ratcatdogcat" can be concatenated by "rat", "cat", "dog" and "cat".
Example 2:
Input: words = ["cat","dog","catdog"]
Output: ["catdog"]
Constraints:
1 <= words.length <= 104
1 <= words[i].length <= 30
words[i] consists of only lowercase English letters.
All the strings of words are unique.
1 <= sum(words[i].length) <= 105
Solutions
Solution 1
Thinking
A concatenated word is at least two shorter dictionary words. Trying every split and a set lookup grows with both \(n\) and length.
Sort by length and insert shorter words into a trie first. DFS the current word on the trie: at an end-of-word node recurse on the suffix; if the whole word splits, it is concatenated, otherwise insert it.
Concatenated words stay out of the trie, since a longer word can always fall back to atomic pieces. The empty suffix is the success base case.