-
Notifications
You must be signed in to change notification settings - Fork 0
/
11.盛最多水的容器.js
88 lines (86 loc) · 1.73 KB
/
11.盛最多水的容器.js
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
/*
* @lc app=leetcode.cn id=11 lang=javascript
*
* [11] 盛最多水的容器
*
* https://leetcode-cn.com/problems/container-with-most-water/description/
*
* algorithms
* Medium (64.38%)
* Likes: 2410
* Dislikes: 0
* Total Accepted: 425.7K
* Total Submissions: 663.3K
* Testcase Example: '[1,8,6,2,5,4,8,3,7]'
*
* 给你 n 个非负整数 a1,a2,...,an,每个数代表坐标中的一个点 (i, ai) 。在坐标内画 n 条垂直线,垂直线 i 的两个端点分别为
* (i, ai) 和 (i, 0) 。找出其中的两条线,使得它们与 x 轴共同构成的容器可以容纳最多的水。
*
* 说明:你不能倾斜容器。
*
*
*
* 示例 1:
*
*
*
*
* 输入:[1,8,6,2,5,4,8,3,7]
* 输出:49
* 解释:图中垂直线代表输入数组 [1,8,6,2,5,4,8,3,7]。在此情况下,容器能够容纳水(表示为蓝色部分)的最大值为 49。
*
* 示例 2:
*
*
* 输入:height = [1,1]
* 输出:1
*
*
* 示例 3:
*
*
* 输入:height = [4,3,2,1,4]
* 输出:16
*
*
* 示例 4:
*
*
* 输入:height = [1,2,1]
* 输出:2
*
*
*
*
* 提示:
*
*
* n = height.length
* 2
* 0
*
*
*/
// @lc code=start
/**
* @param {number[]} height
* @return {number}
*/
var maxArea = function(height) {
const n=height.length
// 双指针
let left=0,right=n-1
let max=0
while(left<right){
let cur = (right-left)*Math.min(height[left],height[right])
max=cur>max?cur:max
// 贪心:哪个指针值小 就移动哪个指针
if(height[left]>height[right]){
right--
}else{
left++
}
}
return max
};
// @lc code=end