[NeetCode 150] Max Water Container

Max Water Container

You are given an integer array heights where heights[i] represents the height of the ithi^{th}ith bar.

You may choose any two bars to form a container. Return the maximum amount of water a container can store.

Example 1:

Input: height = [1,7,2,5,4,7,3,6]

Output: 36

Example 2:

Input: height = [2,2,2]

Output: 4

Constraints:

2 <= height.length <= 1000
0 <= height[i] <= 1000

Solution

In a greedy strategy, a given container can have larger area when there exists a higher bar in it, beacause lower bar with shorter distance will definitely have smaller area. Also, for a given container, when we shrink the length between its endpoints, they area might become large only when we move the shorter bar.

Therefore, we can first take the 0 and n-1 bar as the endpoints, and move the shorter bar every time to gain a maximum.

Code

class Solution:
    def maxArea(self, heights: List[int]) -> int:
        ans = 0
        le = 0
        ri = len(heights)-1
        while le < ri:
            ans = max(ans, min(heights[le], heights[ri])*(ri-le))
            if heights[le] < heights[ri]:
                le += 1
            else:
                ri -= 1
        return ans
        
评论
成就一亿技术人!
拼手气红包6.0元
还能输入1000个字符
 
红包 添加红包
表情包 插入表情
 条评论被折叠 查看
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

ShadyPi

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值