中等

813

相关企业

给你一个字符串 s 和一个整数 k 。你可以选择字符串中的任一字符,并将其更改为任何其他大写英文字符。该操作最多可执行 k 次。

在执行上述操作后,返回包含相同字母的最长子字符串的长度。

示例 1:

输入:s = "ABAB", k = 2
输出:4
解释:用两个'A'替换为两个'B',反之亦然。

示例 2:

输入:s = "AABABBA", k = 1
输出:4
解释:
将中间的一个'A'替换为'B',字符串变为 "AABBBBA"。
子串 "BBBB" 有最长重复字母, 答案为 4。
可能存在其他的方法来得到同样的结果。

提示:

class Solution{
    public int characterReplacement(String s, int k) {
        if (s == null || s.length() == 0) return 0;
        int map [] = new int [26];
        char [] chars = s.toCharArray();
        int left = 0;
        int right = 0;
        int windowsMax = 0;
        while(right < chars.length){
            int index = chars[right] - 'A';
            map[index] ++;
            windowsMax = Math.max(windowsMax, map[index]);
            if(right - left + 1 > windowsMax + k){
                index = chars[left] - 'A';
                map[index] --;
                left++;
            }
            right ++;
        }
        return right - left ;
    }
}