C解法
更新中
class="hljs-button signin active" data-title="登录复制" data-report-click="{"spm":"1001.2101.3001.4334"}">
JS解法
输入处理:
使用 readline 模块读取标准输入。
验证输入是否符合要求:
输入字符串必须包含逗号。
每个逗号分隔的元素必须是一个有效整数。
数组长度必须大于等于 2。
如果输入无效,则输出 1 表示错误。
双指针法:
左指针 left 从数组的起始位置开始。
右指针 right 从数组的末尾位置开始。
在指针未相遇前,计算当前指针形成的容器面积,更新最大面积 maxArea。
指针移动规则:
比较左右指针对应的高度:
如果左指针高度较小,则左指针右移。
如果右指针高度较小,则右指针左移。
目的是尽可能找到更高的线条,提高面积。
输出结果:
循环结束后,返回最大面积。
const readline = require("readline");
const rl = readline.createInterface({
input: process.stdin,
output: process.stdout,
});
rl.on("line", (line) => {
try {
if (!line || !line.includes(",")) {
throw new Error();
}
const arr = line.split(",").map((ele) => {
const num = parseInt(ele, 10);
if (isNaN(num)) {
throw new Error();
}
return num;
});
if (arr.length < 2) {
throw new Error();
}
console.log(findMaxArea(arr));
} catch (err) {
console.error("1");
}
});
function findMaxArea(arr) {
let left = 0;
let right = arr.length - 1;
let maxArea = 0;
while (left < right) {
let width = right - left;
let height = Math.min(arr[left], arr[right]);
maxArea = Math.max(maxArea, width * height);
if (arr[left] < arr[right]) {
left++;
} else {
right--;
}
}
return maxArea;
}
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
注意:
如果发现代码有用例覆盖不到的情况,欢迎反馈!会在第一时间修正,更新。
解题不易,如对您有帮助,欢迎点赞/收藏
评论记录:
回复评论: