[LeetCode][Java] Trapping Rain Water

來源:互聯網
上載者:User

標籤:leetcode   java   trapping rain water   

題意:

Given n non-negative integers representing an elevation map where the width of each bar is 1, compute how much water it is able to trap after raining.

For example, 
Given [0,1,0,2,1,0,1,3,2,1,2,1], return 6.


The above elevation map is represented by array [0,1,0,2,1,0,1,3,2,1,2,1]. In this case, 6 units of rain water (blue section) are being trapped. Thanks Marcos for contributing this image!

題目:

給定n個非負整數來代表高度圖,每個欄的寬度為1.計算下雨之後這個東東能最多能盛多少的水。

比如,給定[0,1,0,2,1,0,1,3,2,1,2,1], 返回 6.

的高度圖通過數組[0,1,0,2,1,0,1,3,2,1,2,1]表示出來。這個例子中雨水(藍色所示)共6個單位。

演算法分析:

當刷到這個題的時候我真是醉了。這就是15年春季的阿里演算法工程師實習線上筆試的題目~~

一模一樣,當時水筆的我真心不會做啊,筆試果斷沒過 囧~~

  * 觀察下就可以發現被水填滿後的形狀是先升後降的塔形,因此,先遍曆一遍找到塔頂,然後分別從兩邊開始,往塔頂所在位置遍曆,水位只會增高不會減小,

  * 且一直和最近遇到的最大高度持平,這樣知道了即時水位,就可以邊遍曆邊計算面積。

  * 首先找到最高的,然後從左往最高處掃,

 * 碰到一個數A[i],計算A[0,,,i-1]最高的是否高過A[i],

 * 如果是,則A[i]上的水的體積為max(A[0...i-1])-A[i],否則為0並且更新最大值

AC代碼:

public class Solution {   public int trap(int[] height)     {        if(height==null||height.length==0)        return 0;        int res=0;        int maxvalue=0;        int label=0;        int startmvalue=0;        int endmvalue=0;        int mtem;        for(int i=0;i<height.length;i++)        {        if(height[i]>maxvalue)        {        maxvalue=height[i];        label=i;        }        }        startmvalue=height[0];        for(int i=0;i<label;i++)        {        if(height[i]>startmvalue) startmvalue=height[i];        else        {        res+=startmvalue-height[i];        }        }        endmvalue=height[height.length-1];        for(int i=height.length-1;i>label;i--)        {        if(height[i]>endmvalue) endmvalue=height[i];        else        {        res+=endmvalue-height[i];        }        }    return res;    }}


著作權聲明:本文為博主原創文章,轉載註明出處

[LeetCode][Java] Trapping Rain Water

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.