Leetcode(力扣)刷题第11题——盛最多水的容器(双指针)

题目:

给定一个长度为 n 的整数数组 height 。有 n 条垂线,第 i 条线的两个端点是 (i, 0) 和 (i, height[i]) 。

找出其中的两条线,使得它们与 x 轴共同构成的容器可以容纳最多的水。

返回容器可以储存的最大水量。

说明:你不能倾斜容器。

题图:

Leetcode(力扣)刷题第11题——盛最多水的容器(双指针)_第1张图片

 

示例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 = [1,1]
输出:1

题目截图:

Leetcode(力扣)刷题第11题——盛最多水的容器(双指针)_第2张图片

 

过题代码:

class Solution:
    def maxArea(self, height: List[int]) -> int:
        result = []
        i,j = 0,len(height)-1
        volume = 0
        while i < j:
            new_volume = (j-i) * min(height[i],height[j])
            if new_volume >= volume:
                volume = new_volume
            if height[i] < height[j]:
                i += 1
            else:
                j -= 1
        return volume

审查结果:

Leetcode(力扣)刷题第11题——盛最多水的容器(双指针)_第3张图片

 

你可能感兴趣的:(Leetcode(力扣)刷题集,leetcode,算法,python,pycharm)