424. Longest Repeating Character Replacement
You are given a string s and an integer k. You can choose any character of the string and change it to any other uppercase English character. You can perform this operation at most k times.
Return the length of the longest substring containing the same letter you can get after performing the above operations.
Example 1:
Example 2:
Input: s = "AABABBA", k = 1
Output: 4
Explanation: Replace the one 'A' in the middle with 'B' and form "AABBBBA".
The substring "BBBB" has the longest repeating letters, which is 4.
There may exists other ways to achieve this answer too.
Constraints:
1 <= s.length <= 105sconsists of only uppercase English letters.0 <= k <= s.length
Solution:
class Solution {
public int characterReplacement(String s, int k) {
Map<Character, Integer> map = new HashMap<>();
int left = 0;
int result = 0;
int maxCount = 0; // [left, right] 中曾经出现过的字符频数最多的那个值.
int n = s.length();
for (int right = 0; right < n; right++){
char cur = s.charAt(right);
map.put(cur, map.getOrDefault(cur, 0) + 1);
maxCount = Math.max(maxCount, map.get(cur));
while((right - left + 1) - maxCount > k){
char leftChar= s.charAt(left);
map.put(leftChar, map.get(leftChar) - 1);
left++;
}
result = Math.max(result, right - left + 1);
}
return result;
}
}
// TC: O(n)
// SC: O(n)
424 1004 1493 2024