码迷,mamicode.com
首页 > 其他好文 > 详细

Container With Most Water

时间:2014-10-22 11:00:53      阅读:131      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   io   os   ar   java   for   sp   

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.

答案

public class Solution {
    public int maxArea(int[] height) {
        if(height==null||height.length<2)
        {
            return 0;
        }
        int N=height.length;
        int []left=new int[N];
        int []right=new int[N];
        int max=0;
        List<Integer> listLeft=new LinkedList<Integer>();
        List<Integer> listRight=new LinkedList<Integer>();
        left[0]=height[0];
        right[N-1]=height[N-1];
        listLeft.add(0);
        listRight.add(N-1);
        for(int i=1;i<N;i++)
        {
            if(height[i]>left[i-1])
            {
                left[i]=height[i];
                listLeft.add(i);
            }
            else
            {
                left[i]=left[i-1];
            }
        }
        for(int i=N-2;i>=0;i--)
        {
            if(height[i]>right[i+1])
            {
                right[i]=height[i];
                listRight.add(i);
            }
            else
            {
                right[i]=right[i+1];
            }
        }
        for(Integer i:listLeft)
        {
            for(Integer j:listRight)
            {
                if(j<=i)
                {
                    break;
                }
                max=Math.max(max,(j-i)*Math.min(height[i],height[j]));
            }
        }
        return max;
    }
}


Container With Most Water

标签:style   blog   color   io   os   ar   java   for   sp   

原文地址:http://blog.csdn.net/jiewuyou/article/details/40373007

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!