1. 程式人生 > >leetcode-11:Container With Most Water盛最多水的容器

leetcode-11:Container With Most Water盛最多水的容器

題目:

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 and n is at least 2.

 

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

給定 n

 個非負整數 a1,a2,...,an,每個數代表座標中的一個點 (iai) 。在座標內畫 n 條垂直線,垂直線 i 的兩個端點分別為 (iai) 和 (i, 0)。找出其中的兩條線,使得它們與 x 軸共同構成的容器可以容納最多的水。

說明:你不能傾斜容器,且 n 的值至少為 2。

圖中垂直線代表輸入陣列 [1,8,6,2,5,4,8,3,7]。在此情況下,容器能夠容納水(表示為藍色部分)的最大值為 49。

 

示例:

輸入: [1,8,6,2,5,4,8,3,7]
輸出:
49

 思路:求最大,可以從兩邊向中間算。令i從左邊開始,j從右邊開始。height[i]和height[j]越接近越好,每次左右兩端捨棄小的那一端就行。

class Solution {
public:
    int maxArea(vector<int>& height) {
        int j=height.size()-1,i=0,ret=0;
        while(i<j)
        {
            ret = max(ret,min(height[i],height[j])*(j-i));
            height[j]>height[i]?i++:j--;    
        }return ret;
    }
};