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

11 Container With Most Water

时间:2016-03-14 11:57:50      阅读:126      评论: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.

给你一个顶点数组,例如{4,7,9},这个定点数组代表直角坐标系上三个点,(1,4),(2,7),(3,9),然后过这三个点,分别作垂直于X轴的线段,例如对于(1,4),线段的两个端点为(1,4)和(1,0),然后,我们可以得到三条垂直于X轴的线段。从这些线段中找出一对组合,使得,这对组合的   横坐标之差  乘以  两条线段中较短者的长度    的乘积最大。

 

解题思路:

先拿最左边的线段和最右边的线段作为组合,计算出乘积,然后,找两者中较为短的一方,慢慢向中间靠拢。举个例子,{4,3,7,2,9,7},先计算4和7的组合的乘积,然后找两者中比较小的一方,这里是4,让它向中间靠拢,向前走一步是3,但3比4小,所以计算3和7的组合是没有意义的,所以,继续向中间靠拢,发现了7,7比4大,所以有可能会得到比原来更大的面积,因此计算7和7的组合的乘积。

重复这个过程,直至左边的工作指针大于等于右边的工作指针

public class Solution {  
  
    public int maxArea(int[] height) {  
        int lpoint = 0, rpoint = height.length - 1;  
        int area = 0;  
        while (lpoint < rpoint) {  
            area = Math.max(area, Math.min(height[lpoint], height[rpoint]) *  
                    (rpoint - lpoint));  
            if (height[lpoint] > height[rpoint])  
                rpoint--;  
            else  
                lpoint++;  
        }  
        return area;  
    }  
}  

 

 

11 Container With Most Water

标签:

原文地址:http://www.cnblogs.com/zxqstrong/p/5274938.html

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