- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
- 28
- 29
- 30
- 31
- 32
- 33
- 34
- 35
- 36
- 37
- 38
- 39
- 40
- 41
- 42
- 43
- 44
- 45
- 46
- 47
- 48
java解法
给定一个字符串 s 和需要排除的字符 excludeChar。
找出字符串中不包含 excludeChar 且满足以下条件的最长子字符串长度:
子字符串中每个字符最多出现两次。
解决方案
使用滑动窗口技术:
定义窗口的左右边界 left 和 right。
使用哈希表 charCount 记录窗口内每个字符的出现次数。
遍历字符串:
如果当前字符是 excludeChar:
重置窗口:移动 left 指针到当前字符之后,并清空 charCount。
如果当前字符不是 excludeChar:
将其加入窗口,并更新其计数。
如果某字符在窗口内的计数超过 2,则移动 left 指针收缩窗口,直到计数满足条件。
更新当前窗口的最大长度
import java.util.*;
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
String excludeChar = sc.nextLine();
String inputString = sc.nextLine();
System.out.println(maxSubstringLength(inputString, excludeChar.charAt(0)));
}
public static int maxSubstringLength(String s, char excludeChar) {
int maxLength = 0;
Map<Character, Integer> charCount = new HashMap<>();
int left = 0;
for (int right = 0; right < s.length(); right++) {
char currentChar = s.charAt(right);
if (currentChar == excludeChar) {
left = right + 1;
charCount.clear();
continue;
}
charCount.put(currentChar, charCount.getOrDefault(currentChar, 0) + 1);
while (charCount.get(currentChar) > 2) {
char leftChar = s.charAt(left);
charCount.put(leftChar, charCount.get(leftChar) - 1);
if (charCount.get(leftChar) == 0) {
charCount.remove(leftChar);
}
left++;
}
maxLength = Math.max(maxLength, right - left + 1);
}
return maxLength;
}
}
class="hljs-button signin active" data-title="登录复制" data-report-click="{"spm":"1001.2101.3001.4334"}">
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
- 28
- 29
- 30
- 31
- 32
- 33
- 34
- 35
- 36
- 37
- 38
- 39
- 40
- 41
- 42
- 43
- 44
- 45
- 46
- 47
- 48
- 49
- 50
- 51
- 52
- 53
- 54
- 55
- 56
- 57
- 58
- 59
- 60
- 61
- 62
- 63
- 64
- 65
- 66
- 67
- 68
- 69
C++解法
更新中
class="hljs-button signin active" data-title="登录复制" data-report-click="{"spm":"1001.2101.3001.4334"}">
C解法
更新中
class="hljs-button signin active" data-title="登录复制" data-report-click="{"spm":"1001.2101.3001.4334"}">
JS解法
给定一个字符串 s 和一个需要排除的字符 excludeChar。
找出不包含 excludeChar 且满足以下条件的最长子字符串长度:
子字符串中每个字符最多出现两次。
解决方案
使用滑动窗口技术和一个哈希表来统计窗口内字符的出现次数。
滑动窗口的核心思想:
定义窗口的左右边界 left 和 right。
遍历字符串,动态调整窗口的大小和位置以满足条件:
如果当前字符是 excludeChar,重置窗口。
如果当前字符不是 excludeChar,更新其计数。
如果某字符在窗口内的计数超过 2,移动 left 指针收缩窗口,直到条件满足。
在每一步中,记录窗口的最大长度
const readline = require("readline");
const rl = readline.createInterface({
input: process.stdin,
output: process.stdout,
});
const inp = [];
rl.on("line", (line) => {
inp.push(line);
if (inp.length === 2) {
console.log(maxSubstringLength(inp[1], inp[0]));
inp.length = 0;
}
});
function maxSubstringLength(s, excludeChar) {
const exclude = excludeChar.charCodeAt(0);
let maxLength = 0;
let charCount = {};
let left = 0;
for (let right = 0; right < s.length; right++) {
const currentChar = s.charCodeAt(right);
if (currentChar === exclude) {
left = right + 1;
charCount = {};
continue;
}
charCount[currentChar] = (charCount[currentChar] || 0) + 1;
while (charCount[currentChar] > 2) {
const leftChar = s.charCodeAt(left);
charCount[leftChar]--;
left++;
}
maxLength = Math.max(maxLength, right - left + 1);
}
return maxLength;
}
class="hljs-button signin active" data-title="登录复制" data-report-click="{"spm":"1001.2101.3001.4334"}">
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
- 28
- 29
- 30
- 31
- 32
- 33
- 34
- 35
- 36
- 37
- 38
- 39
- 40
- 41
- 42
- 43
- 44
- 45
- 46
- 47
- 48
- 49
- 50
- 51
- 52
- 53
- 54
- 55
- 56
- 57
- 58
- 59
- 60
- 61
- 62
- 63
- 64
- 65
- 66
- 67
- 68
- 69
- 70
注意:
如果发现代码有用例覆盖不到的情况,欢迎反馈!会在第一时间修正,更新。
解题不易,如对您有帮助,欢迎点赞/收藏
评论记录:
回复评论: