-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRainTrapped.java
41 lines (28 loc) · 941 Bytes
/
RainTrapped.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
public class RainTrapped {
public static int Trappedrainwater(int height[]){
int n=height.length;
//calculate left max boundary-array
int leftMax[]=new int [n];
leftMax[0]=height[0];
for(int i=1;i<n;i++){
leftMax[i]=Math.max(height[i],leftMax[i-1]);
}
//calculate right max boundary-array
int rightMax[]=new int [n];
rightMax[n-1]=height[n-1];
for(int i=n-2;i>=0;i--){
rightMax[i]=Math.max(height[i],rightMax[i+1]);
}
//to trappedwater
int trappedwater=0;
for(int i=0;i<n;i++){
int waterlevel=Math.min(leftMax[i],rightMax[i]);
trappedwater+=waterlevel-height[i];
}
return trappedwater;
}
public static void main(String args[]){
int height[]={4,2,0,6,3,2,5};
System.out.println("rainwater ratio is :"+Trappedrainwater(height));
}
}