[leetcode] Container With Most Water

來源:互聯網
上載者:User

標籤:class   blog   code   java   http   tar   

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.

https://oj.leetcode.com/problems/container-with-most-water/

思路1:O(n^2)複雜窮舉所有的情況,too young too simple.

思路2::兩個指標i,j分別指向首位,選擇二者中小的向中間移動,同時更新最大值。這個想法的基礎是,如果i的長度小於j,如果移動j,短板在i,不可能找到比目前記錄的area更大的值了,只能通過移動i來找到新的可能的更大面積。

public class Solution {    public int maxArea(int[] height) {        int n = height.length;        int maxA = 0;        int curA = 0;        int i = 0, j = n - 1;        while (i < j) {            if (height[i] <= height[j]) {                curA = Math.abs(j - i) * height[i];                if (curA > maxA)                    maxA = curA;                i++;            } else {                curA = Math.abs(j - i) * height[j];                if (curA > maxA)                    maxA = curA;                j--;            }        }        return maxA;    }    public static void main(String[] args) {        System.out.println(new Solution().maxArea(new int[] { 2, 2, 2 }));        System.out.println(new Solution().maxArea(new int[] { 1, 2, 3 }));        System.out.println(new Solution().maxArea(new int[] { 2, 3, 3 }));    }}

 

參考:

http://blog.csdn.net/wzy_1988/article/details/17248209

http://www.cnblogs.com/zhaolizhen/p/Containerwater.html

 

 

 

 

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.