LeetCode 1048. Longest String Chain
Question
You are given an array of words
where each word consists of lowercase English letters.
wordA
is a predecessor of wordB
if and only if we can insert exactly one letter anywhere in wordA
without changing the order of the other characters to make it equal to wordB
.
- For example,
"abc"
is a predecessor of"abac"
, while"cba"
is not a predecessor of"bcad"
.
A word chain is a sequence of words [word1, word2, ..., wordk]
with k >= 1
, where word1
is a predecessor of word2
, word2
is a predecessor of word3
, and so on. A single word is trivially a word chain with k == 1
.
Return the length of the longest possible word chain with words chosen from the given list of words
.
Example 1:
1 | Input: words = ["a","b","ba","bca","bda","bdca"] |
Example 2:
1 | Input: words = ["xbc","pcxbcf","xb","cxbc","pcxbc"] |
Example 3:
1 | Input: words = ["abcd","dbqca"] |
Constraints:
1 <= words.length <= 1000
1 <= words[i].length <= 16
words[i]
only consists of lowercase English letters.
Source: https://leetcode.com/problems/longest-string-chain/
Solution
Bottom-Up DP
For words
, the length of longest string chain that ends with word
equals $max(pre_0(word),pre_1(word),…,pre_{l-1}(word))+1$
1 | public int longestStrChain(String[] words) { |
LeetCode 1048. Longest String Chain
http://yenotes.org/2021/12/30/LeetCode-1048-Longest-String-Chain/