- 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
java解法:
import java.util.Arrays;
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int size = sc.nextInt();
int toRemove = sc.nextInt();
int[] arr = new int[size];
Arrays.fill(arr, 1);
for (int i = 0; i < toRemove; i++) {
int index = sc.nextInt() - 1;
arr[index] = 0;
}
int maxZeros = sc.nextInt();
System.out.println(findMaxSubarray(arr, maxZeros));
}
public static int findMaxSubarray(int[] arr, int maxZeros) {
int left = 0;
int zeroCount = 0;
int maxLength = 0;
for (int right = 0; right < arr.length; right++) {
if (arr[right] == 0) {
zeroCount++;
}
while (zeroCount > maxZeros) {
if (arr[left] == 0) {
zeroCount--;
}
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
c++解法:
#include
#include
#include
#define MAX_TREES 10000
int findMaxContinuous(int trees[], int totalTrees, int maxPlant) {
int start = 0;
int deadIndices[MAX_TREES];
int deadCount = 0;
int maxLength = 0;
for (int end = 0; end < totalTrees; end++) {
if (trees[end] == 0) {
deadIndices[deadCount++] = end;
if (deadCount > maxPlant) {
maxLength = (end - start > maxLength) ? end - start : maxLength;
start = deadIndices[0] + 1;
for (int i = 1; i < deadCount; i++) {
deadIndices[i - 1] = deadIndices[i];
}
deadCount--;
}
}
maxLength = (end - start + 1 > maxLength) ? end - start + 1 : maxLength;
}
return maxLength;
}
int main() {
int totalTrees, deadTrees, maxPlant;
scanf("%d %d", &totalTrees, &deadTrees);
int treeLine[MAX_TREES];
for (int i = 0; i < totalTrees; i++) {
treeLine[i] = 1;
}
for (int i = 0; i < deadTrees; i++) {
int deadIndex;
scanf("%d", &deadIndex);
treeLine[deadIndex - 1] = 0;
}
scanf("%d", &maxPlant);
printf("%d\n", findMaxContinuous(treeLine, totalTrees, maxPlant));
return 0;
}
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
- 71
js解法:
const readline = require("readline");
const rl = readline.createInterface({
input: process.stdin,
output: process.stdout,
});
const inputs = [];
rl.on("line", (input) => {
inputs.push(input);
if (inputs.length === 4) {
const total = parseInt(inputs[0], 10);
const deadCount = parseInt(inputs[1], 10);
const deadPositions = inputs[2].split(" ").map(Number);
const maxReplant = parseInt(inputs[3], 10);
const result = findMaxConsecutive(total, deadPositions, maxReplant);
console.log(result);
inputs.length = 0;
}
});
function findMaxConsecutive(n, deadTrees, k) {
let leftPtr = 0;
let replantCnt = 0;
let maxConsec = 0;
let deadPos = new Set(deadTrees);
for (let rightPtr = 0; rightPtr < n; rightPtr++) {
if (deadPos.has(rightPtr + 1)) {
replantCnt++;
}
while (replantCnt > k) {
if (deadPos.has(leftPtr + 1)) {
replantCnt--;
}
leftPtr++;
}
maxConsec = Math.max(maxConsec, rightPtr - leftPtr + 1);
}
return maxConsec;
}
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
c解法:
#include
#include
#include
#define MAX_TREES 10000
int findMaxContinuous(int trees[], int totalTrees, int maxPlant) {
int start = 0;
int deadIndices[MAX_TREES];
int deadCount = 0;
int maxLength = 0;
for (int end = 0; end < totalTrees; end++) {
if (trees[end] == 0) {
deadIndices[deadCount++] = end;
if (deadCount > maxPlant) {
maxLength = (end - start > maxLength) ? end - start : maxLength;
start = deadIndices[0] + 1;
for (int i = 1; i < deadCount; i++) {
deadIndices[i - 1] = deadIndices[i];
}
deadCount--;
}
}
maxLength = (end - start + 1 > maxLength) ? end - start + 1 : maxLength;
}
return maxLength;
}
int main() {
int totalTrees, deadTrees, maxPlant;
scanf("%d %d", &totalTrees, &deadTrees);
int treeLine[MAX_TREES];
for (int i = 0; i < totalTrees; i++) {
treeLine[i] = 1;
}
for (int i = 0; i < deadTrees; i++) {
int deadIndex;
scanf("%d", &deadIndex);
treeLine[deadIndex - 1] = 0;
}
scanf("%d", &maxPlant);
printf("%d\n", findMaxContinuous(treeLine, totalTrees, maxPlant));
return 0;
}
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
- 71
- 72
代码已自测,如您发现有未覆盖到的情况,欢迎私信或留言! 会在看到的第一时间优化,感谢_!

评论记录:
回复评论: