-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTrappingRainWater.java
More file actions
36 lines (28 loc) · 977 Bytes
/
Copy pathTrappingRainWater.java
File metadata and controls
36 lines (28 loc) · 977 Bytes
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
package array.part2;
public class TrappingRainWater {
public static int trap(int[] height) {
int n = height.length;
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]);
}
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]);
}
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(trap(height));
}
}
// Trapping Rain Water (LeetCode 42)
// https://leetcode.com/problems/trapping-rain-water/description/