[leetcode]Container With Most Water(using Python)

本文介绍了一种寻找能盛最多水的两个垂直线的高效算法。通过双指针技巧,避免了传统嵌套循环的高时间复杂度问题,实现O(n)时间复杂度。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

原题链接:点击打开链接

题目描述:

Given n non-negative integers a1a2, ..., an, where each represents a point at coordinate (iai). n vertical lines are drawn such that the two endpoints of line i is at (iai) and (i, 0). Find two lines, which together with x-axis forms a container, such that the container contains the most water.

Note: You may not slant the container and n is at least 2

思路:最容易想到的方法是嵌套循环,把所有的container的容量都求出来,最后得到最大的容量,但是很显然这样的做法的时间复杂度是O(n^2),会超出运行时间限制。

进一步思考发现,container的容量是由底长和较短的那个壁决定的,我们使用两个指针 left 和 right,一个在List[0],另一个在List[len(List) - 1],而一旦能够确定当前容器的左边或者右边的壁较短,那么由这个较短壁能够构成的容器的最大容量就已经求得了。之后需要将这个较短壁的指针向后或向前移动一位(具体看是哪个指针指向当前较短壁,若是left就后移一位,若是right就向前移一位)。Python代码如下:

class Solution(object):
    def maxArea(self, height):
        """
        :type height: List[int]
        :rtype: int
        """
        if len(height) < 2:
            return -1
        else:
            mwater = 0
            left = 0
            right = len(height) - 1
            while left < right:
                mwater = max(mwater, (right - left)*min(height[left],height[right]))
                if height[left] < height[right]:
                    left +=1
                else:
                    right -= 1
        return mwater


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值