[LeetCode]11.Container With Most Water

栏目: 编程工具 · 发布时间: 5年前

内容简介:Given n non-negative integers a1, a2, ..., an , where each representsa point at coordinate (i, ai). n vertical lines are drawn such thatthe two endpoints of line i is at (i, ai) and (i, 0). Find two lines,

Given n non-negative integers a1, a2, ..., an , where each represents

a point at coordinate (i, ai). n vertical lines are drawn such that

the two endpoints of line i is at (i, ai) 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.

[LeetCode]11.Container With Most Water

The above vertical lines are represented by array [1,8,6,2,5,4,8,3,7].

In this case, the max area of water (blue section) the container can

contain is 49.

Example:

Input: [1,8,6,2,5,4,8,3,7] Output: 49

开始把这题想复杂了,决定最大值的只有两侧的高度,遍历的话o(n^2)的复杂度

很多状态是重复的

可以通过双指针转化为贪心问题

对于

100001

目前的状态下移动挡板只有移动矮的挡板才能可能比当前回大

public int maxArea(int[] height) {

int max=0;
    int l=0;
    int r=height.length-1;
    while(l<r){
        max=Math.max(max,Math.min(height[l],height[r])*(r-l));
        if(height[l]<height[r]) l++;
        else r--;
    }
    return max;

}


以上所述就是小编给大家介绍的《[LeetCode]11.Container With Most Water》,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对 码农网 的支持!

查看所有标签

猜你喜欢:

本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们

啊哈C!思考快你一步

啊哈C!思考快你一步

啊哈磊 / 电子工业出版社 / 2013-9 / 39.00元

这是一本非常有趣的编程启蒙书,全书从中小学生的角度来讲述,没有生涩的内容,取而代之的是生动活泼的漫画和风趣幽默的文字。并配合超萌的编程软件,从开始学习与计算机对话到自己独立制作一个游戏,由浅入深地讲述编程的思维。同时,与计算机展开的逻辑较量一定会让你觉得很有意思。你可以在茶余饭后阅读本书,甚至蹲在马桶上时也可以看得津津有味。编程将会改变我们的思维,教会我们如何思考,让我们的思维插上计算机的翅膀,以......一起来看看 《啊哈C!思考快你一步》 这本书的介绍吧!

MD5 加密
MD5 加密

MD5 加密工具

Markdown 在线编辑器
Markdown 在线编辑器

Markdown 在线编辑器

UNIX 时间戳转换
UNIX 时间戳转换

UNIX 时间戳转换