LeetCode 题解工作台
最长相邻不相等子序列 II
给定一个字符串数组 words ,和一个数组 groups ,两个数组长度都是 n 。 两个长度相等字符串的 汉明距离 定义为对应位置字符 不同 的数目。 你需要从下标 [0, 1, ..., n - 1] 中选出一个 最长 子序列 ,将这个子序列记作长度为 k 的 [i 0 , i 1 , ...…
3
题型
6
代码语言
3
相关题
当前训练重点
中等 · 状态·转移·动态规划
答案摘要
我们定义 表示以第 个单词结尾的最长相邻不相等子序列的长度,定义 表示以第 个单词结尾的最长相邻不相等子序列的前驱下标。初始时 $f[i] = 1$, $g[i] = -1$。 另外,我们定义一个变量 表示最长相邻不相等子序列的长度。
Interview AiBoxInterview AiBox 实时 AI 助手,陪你讲清 状态·转移·动态规划 题型思路
题目描述
给定一个字符串数组 words ,和一个数组 groups ,两个数组长度都是 n 。
两个长度相等字符串的 汉明距离 定义为对应位置字符 不同 的数目。
你需要从下标 [0, 1, ..., n - 1] 中选出一个 最长子序列 ,将这个子序列记作长度为 k 的 [i0, i1, ..., ik - 1] ,它需要满足以下条件:
- 相邻 下标对应的
groups值 不同。即,对于所有满足0 < j + 1 < k的j都有groups[ij] != groups[ij + 1]。 - 对于所有
0 < j + 1 < k的下标j,都满足words[ij]和words[ij + 1]的长度 相等 ,且两个字符串之间的 汉明距离 为1。
请你返回一个字符串数组,它是下标子序列 依次 对应 words 数组中的字符串连接形成的字符串数组。如果有多个答案,返回任意一个。
子序列 指的是从原数组中删掉一些(也可能一个也不删掉)元素,剩余元素不改变相对位置得到的新的数组。
注意:words 中的字符串长度可能 不相等 。
示例 1:
输入:words = ["bab","dab","cab"], groups = [1,2,2] 输出:["bab","cab"] 解释:一个可行的子序列是 [0,2] 。 - groups[0] != groups[2] - words[0].length == words[2].length 且它们之间的汉明距离为 1 。 所以一个可行的答案是 [words[0],words[2]] = ["bab","cab"] 。 另一个可行的子序列是 [0,1] 。 - groups[0] != groups[1] - words[0].length = words[1].length 且它们之间的汉明距离为 1 。 所以另一个可行的答案是 [words[0],words[1]] = ["bab","dab"] 。 符合题意的最长子序列的长度为 2 。
示例 2:
输入:words = ["a","b","c","d"], groups = [1,2,3,4] 输出:["a","b","c","d"] 解释:我们选择子序列 [0,1,2,3] 。 它同时满足两个条件。 所以答案为 [words[0],words[1],words[2],words[3]] = ["a","b","c","d"] 。 它是所有下标子序列里最长且满足所有条件的。 所以它是唯一的答案。
提示:
1 <= n == words.length == groups.length <= 10001 <= words[i].length <= 101 <= groups[i] <= nwords中的字符串 互不相同 。words[i]只包含小写英文字母。
解题思路
方法一:动态规划
我们定义 表示以第 个单词结尾的最长相邻不相等子序列的长度,定义 表示以第 个单词结尾的最长相邻不相等子序列的前驱下标。初始时 , 。
另外,我们定义一个变量 表示最长相邻不相等子序列的长度。
我们枚举 ,枚举 ,如果 且 且 和 之间的汉明距离为 ,则更新 ,,并且更新 。
最后,我们从 数组中找到最大值对应的下标 ,然后从 开始不断往前找,直到找到 ,这样就找到了最长相邻不相等子序列。
时间复杂度 ,空间复杂度 。其中 表示单词的最大长度。
class Solution:
def getWordsInLongestSubsequence(
self, words: List[str], groups: List[int]
) -> List[str]:
def check(s: str, t: str) -> bool:
return len(s) == len(t) and sum(a != b for a, b in zip(s, t)) == 1
n = len(groups)
f = [1] * n
g = [-1] * n
mx = 1
for i, x in enumerate(groups):
for j, y in enumerate(groups[:i]):
if x != y and f[i] < f[j] + 1 and check(words[i], words[j]):
f[i] = f[j] + 1
g[i] = j
mx = max(mx, f[i])
ans = []
for i in range(n):
if f[i] == mx:
j = i
while j >= 0:
ans.append(words[j])
j = g[j]
break
return ans[::-1]
复杂度分析
| 指标 | 值 |
|---|---|
| 时间 | O(n^2L) |
| 空间 | O(n) |
面试官常问的追问
外企场景- question_mark
Candidate understands dynamic programming and state transitions.
- question_mark
Able to manage group constraints and Hamming distance in the context of subsequences.
- question_mark
Efficient in applying the dynamic programming approach to solve sequence problems.
常见陷阱
外企场景- error
Forgetting to check the group numbers for adjacent subsequence elements.
- error
Not handling edge cases with words that are identical or have zero Hamming distance.
- error
Not updating `dp[i]` correctly when a valid subsequence is found.
进阶变体
外企场景- arrow_right_alt
Allow subsequences where group numbers can be equal.
- arrow_right_alt
Change the minimum required Hamming distance between consecutive words.
- arrow_right_alt
Modify the problem to find the shortest subsequence instead of the longest.