LeetCode 2781. 最长合法子字符串的长度

2781. 最长合法子字符串的长度

给你一个字符串 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
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值