2901. Longest Unequal Adjacent Groups Subsequence II
You are given a string array
words, and an arraygroups, both arrays having lengthn.The hamming distance between two strings of equal length is the number of positions at which the corresponding characters are different.
You need to select the longest subsequence from an array of indices
[0, 1, ..., n - 1], such that for the subsequence denoted as[i0, i1, ..., ik-1]having lengthk, the following holds:
- For adjacent indices in the subsequence, their corresponding groups are unequal, i.e.,
groups[ij] != groups[ij+1], for eachjwhere0 < j + 1 < k.words[ij]andwords[ij+1]are equal in length, and the hamming distance between them is1, where0 < j + 1 < k, for all indices in the subsequence.Return a string array containing the words corresponding to the indices (in order) in the selected subsequence. If there are multiple answers, return any of them.
Note: strings in
wordsmay be unequal in length.Example 1:
Input: words = ["bab","dab","cab"], groups = [1,2,2]
Output: ["bab","cab"]
Explanation: A subsequence that can be selected is
[0,2].
groups[0] != groups[2]words[0].length == words[2].length, and the hamming distance between them is 1.So, a valid answer is
[words[0],words[2]] = ["bab","cab"].Another subsequence that can be selected is
[0,1].
groups[0] != groups[1]words[0].length == words[1].length, and the hamming distance between them is1.So, another valid answer is
[words[0],words[1]] = ["bab","dab"].It can be shown that the length of the longest subsequence of indices that satisfies the conditions is
2.Example 2:
Input: words = ["a","b","c","d"], groups = [1,2,3,4]
Output: ["a","b","c","d"]
Explanation: We can select the subsequence
[0,1,2,3].It satisfies both conditions.
Hence, the answer is
[words[0],words[1],words[2],words[3]] = ["a","b","c","d"].It has the longest length among all subsequences of indices that satisfy the conditions.
Hence, it is the only answer.
def differByOneChar(self, word1, word2):
if len(word1) != len(word2):
return False
diffCount = 0
for c1, c2 in zip(word1, word2):
if c1 != c2:
diffCount += 1
return diffCount == 1
def getWordsInLongestSubsequence(self, words, groups):
n = len(groups)
dp = [1] * n
parent = [-1] * n
maxi = 0
for i in range(n):
for j in range(i):
if groups[i] != groups[j] and \
self.differByOneChar(words[i], words[j]) and \
dp[i] < dp[j] + 1:
dp[i] = dp[j] + 1
parent[i] = j
if dp[i] > maxi:
maxi = dp[i]
result = []
for i in range(n):
if dp[i] == maxi:
while i != -1:
result.append(words[i])
i = parent[i]
break
return result[::-1]