博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Trapping Rain Water
阅读量:5343 次
发布时间:2019-06-15

本文共 1096 字,大约阅读时间需要 3 分钟。

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. 

1 public class Solution { 2     public int trap(int[] A) { 3         int len = A.length; 4         if(len<2) return 0; 5         int []leftMax = new int[len], rightMax = new int[len]; 6         int max=0; 7         max = A[0]; 8         leftMax[0] = 0; 9         for(int i=1;i
max){12 max = A[i];13 }14 }15 max = A[len-1]; 16 rightMax[len-1]=0;17 int trap = 0;18 for(int i=len-2;i>=0;i--){19 rightMax[i] = max;20 if(max
0){24 trap+=Math.min(rightMax[i],leftMax[i])-A[i];25 }26 }27 return trap;28 }29 }
View Code

 

转载于:https://www.cnblogs.com/krunning/p/3539147.html

你可能感兴趣的文章
Winform 菜单和工具栏控件
查看>>
CDH版本大数据集群下搭建的Hue详细启动步骤(图文详解)
查看>>
巧用Win+R
查看>>
浅析原生js模仿addclass和removeclass
查看>>
Python中的greenlet包实现并发编程的入门教程
查看>>
java中遍历属性字段及值(常见方法)
查看>>
YUI3自动加载树实现
查看>>
like tp
查看>>
kettle导数到user_用于left join_20160928
查看>>
较快的maven的settings.xml文件
查看>>
随手练——HDU 5015 矩阵快速幂
查看>>
malloc() & free()
查看>>
Linux 的 date 日期的使用
查看>>
Java变量类型,实例变量 与局部变量 静态变量
查看>>
mysql操作命令梳理(4)-中文乱码问题
查看>>
Python环境搭建(安装、验证与卸载)
查看>>
一个.NET通用JSON解析/构建类的实现(c#)
查看>>
详谈js面向对象 javascript oop,持续更新
查看>>
关于这次软件以及pda终端的培训
查看>>
jQuery上传插件Uploadify 3.2在.NET下的详细例子
查看>>