Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

TrappedWater.java #178

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
38 changes: 38 additions & 0 deletions JAVA/TrapWater.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
import java.util.*;

public class ArrayCC{

public static int trappedWater(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]);
}

int trappedWater = 0;
// loop
for(int i=0; i<n; i++){
// water level = min(leftmax bound, rightmax bound)
int waterLevel = Math.min(leftMax[i], rightMax[i]);

// trapped water = water level - height[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(trappedWater(height));
}
}