给你一个字符串 word
和一个字符串数组 forbidden
。
如果一个字符串不包含 forbidden
中的任何字符串,我们称这个字符串是 合法 的。
请你返回字符串 word
的一个 最长合法子字符串 的长度。
子字符串 指的是一个字符串中一段连续的字符,它可以为空。
示例 1:
输入:word = "cbaaaabc", forbidden = ["aaa","cb"] 输出:4 解释:总共有 11 个合法子字符串:"c", "b", "a", "ba", "aa", "bc", "baa", "aab", "ab", "abc" 和 "aabc"。最长合法子字符串的长度为 4 。 其他子字符串都要么包含 "aaa" ,要么包含 "cb" 。
示例 2:
输入:word = "leetcode", forbidden = ["de","le","e"] 输出:4 解释:总共有 11 个合法子字符串:"l" ,"t" ,"c" ,"o" ,"d" ,"tc" ,"co" ,"od" ,"tco" ,"cod" 和 "tcod" 。最长合法子字符串的长度为 4 。 所有其他子字符串都至少包含 "de" ,"le" 和 "e" 之一。
提示:
1 <= word.length <= 10^5
word
只包含小写英文字母。1 <= forbidden.length <= 10^5
1 <= forbidden[i].length <= 10
forbidden[i]
只包含小写英文字母。
解法:滑动窗口
class Solution {
public int longestValidSubstring(String word, List<String> forbidden) {
int n = word.length();
Set<String> fb = new HashSet<>();
fb.addAll(forbidden);
int ans = 0;
int left = 0;
int right = 0;
while (right < n) {
// 1 <= forbidden[i].length <= 10,因此固定子串右端点,forbidden 子串左端点最远为 right - 9
for (int i = right; i >= left && i >= right - 9; i--) {
if (fb.contains(word.substring(i, right + 1))) {
left = i + 1;
break;
}
}
ans = Math.max(ans, right - left + 1);
right++;
}
return ans;
}
}
复杂度分析
- 时间复杂度:O(n),n 是 字符串word的长度。虽然写了个二重循环,但是内层循环中对word子串的查询的总执行次数不会超过 10 次,所以总的时间复杂度为 O(n)。
- 空间复杂度:O(m),m ==
forbidden.length
。