Last Updated: 31 Jul, 2020

Trapping Rain Water

Moderate
Asked in companies
RazorpayMorgan StanleyUber

Problem statement

You have been given a long type array/list 'arr’ of size 'n’.


It represents an elevation map wherein 'arr[i]’ denotes the elevation of the 'ith' bar.


Print the total amount of rainwater that can be trapped in these elevations.


Note :
The width of each bar is the same and is equal to 1.
Example:
Input: ‘n’ = 6, ‘arr’ = [3, 0, 0, 2, 0, 4].

Output: 10

Explanation: Refer to the image for better comprehension:

Alt Text

Note :
You don't need to print anything. It has already been taken care of. Just implement the given function.
Input format :
The first line of each test case contains an integer 'n' representing the size of the array/list.

The second line contains 'n' single space-separated integers representing the elevation of the bars.
Output Format :
Return an integer denoting the amount of water that can be trapped.

Approaches

01 Approach

The idea here is to travel over every elevation on the map and calculate the units of water the elevation can store.

 

Here is the algorithm :

 

  1. Iterate over every elevation or element and find the maximum elevation on to the left and right of it. Say, the maximum elevation on to the left of the current elevation or element that we are looking at is ‘maxLeftHeight’ and the maximum elevation on to the right of it is ‘maxRightHeight’.
  2. Take the minimum of ‘maxLeftHeight’ and ‘maxRightHeight’ and subtract it from the current elevation or element. This will be the units of water that can be stored at this elevation.
  3. Compute units of water that every elevation can store and sum them up to return the total units of water that can be stored.

02 Approach

The idea here is to pre-compute the maximum elevation on the left and right for every element in a most optimized way.

 

Here is the algorithm :

 

  1. Create two lists or arrays, say, ‘leftMax’ and ‘rightMax’.
  2. At every index in the ‘leftMax’ array store the information of the ‘leftMaxHeight’ for every elevation in the map.
  3. Similarly, at every index in the ‘rightMax’ array store the information of the ‘rightMaxHeight' for every elevation in the map.
  4. Iterate over the elevation map and find the units of water that can be stored at this location by getting the left max height and right max height from the initial arrays that we created.

03 Approach

The idea here is to find the maximum elevation in the array by iterating over the array once. Say, the max elevation or height is ‘peak’. 

Taking the ‘peak’ as a reference point, we can say that we may store the water onto the left and right of this point.

Here is the algorithm:

  1. Get the ‘peak’ value
  2. Move from left to right in the elevation map towards the ‘peak’. Maintain three variables:
    • ‘maxSoFar’ is the maximum elevation that has been encountered on the way towards ‘peak’.
    • ‘countSubmerged’ which are the elevations that are smaller than the ‘maxSoFar’.
    • ‘submergedArea’ which is ‘arr[i]' * 1.
  3. Now, every time a new ‘maxSoFar’ is reached, add ('maxSoFar' * ‘countSubmerged’ - ‘submergedArea’) to a running sum.
  4. Repeat the same from right to left.