首页 > 其他 > 详细

11-Container With Most Water

时间:2015-05-05 18:26:21      阅读:165      评论:0      收藏:0      [点我收藏+]

【题目】

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.

【analyze】

1.穷举的方法时间复杂度为O(n)

2.若从两边逼近并记录最大值,令left=0,right=length-1;若height[left]>height[right],则right--;反之,则left++。

 为什么能这么做呢?需要用到反证思想,假设i-j取到最大值,则i之前都要小于height[i]

3.还可改进下,不用每次都减一

【算法】

v1:
public class Solution {
    public int maxArea(int[] height) {
        int res=0;
        int l=0;
        int r=height.length-1;
        while(l<r) {
            int w=r-l;
            int h=Math.min(height[l],height[r]);
            res=Math.max(res,w*h);
            if(height[l]<height[r])
                l++;
            else 
                r--;
        }
        return res;
    }
}

v2:
public class Solution {
    public int maxArea(int[] height) {
        int res=0;
        int l=0;
        int r=height.length-1;
        while(l<r) {
            int w=r-l;
            int h=Math.min(height[l],height[r]);
            res=Math.max(res,w*h);
            if(height[l]<height[r]) {
                int temp=l;
                while(temp<r&&height[temp]<=height[l])
                    temp++;
                l=temp;
            }
            else {
                int temp=r;
                while(temp>l&&height[temp]<=height[r])
                    temp--;
                r=temp;
            }
        }
        return res;
    }
}

 

11-Container With Most Water

原文:http://www.cnblogs.com/hwu2014/p/4479460.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!