Trapping Rainwater Problem Statement
You are given an array ARR
of long type, which represents an elevation map where ARR[i]
denotes the elevation of the ith
bar. Calculate the total amount of rainwater that can be trapped within these elevations.
Input:
The first line contains an integer 'T', denoting the number of test cases. Each test case consists of two lines. The first line contains an integer 'N', representing the size of the array. The second line contains 'N' single space-separated integers, representing the elevation of the bars.
Output:
For each test case, output a single integer in a new line, indicating the total water that can be trapped.
Example:
Input:
2
6
0 2 1 3 0 1
5
3 0 2 0 4
Output:
4
7
Constraints:
1 ≤ T ≤ 10
0 ≤ N ≤ 104
0 ≤ ARR[i] ≤ 109
- Time Limit: 1 sec
Note:
The width of each bar is uniform and equals 1.

AnswerBot
4mo
Calculate the total amount of rainwater that can be trapped within given elevation map.
Iterate through the array to find the maximum height on the left and right of each bar.
Calculate the amount of wa...read more
Help your peers!
Add answer anonymously...
Amazon Software Developer interview questions & answers
A Software Developer was asked 1mo agoQ. Could you describe the process for designing a data structure that allows for al...read more
A Software Developer was asked 1mo agoQ. What is HTML?
A Software Developer was asked 1mo agoQ. What is MySQL?
Popular interview questions of Software Developer
A Software Developer was asked 1mo agoQ1. Could you describe the process for designing a data structure that allows for al...read more
A Software Developer was asked 1mo agoQ2. What is MySQL?
A Software Developer was asked 1mo agoQ3. What is Java?
Top HR questions asked in Amazon Software Developer
A Software Developer was asked 1mo agoQ1. Tell me about a time you had to get to the root cause of a problem
A Software Developer was asked 5mo agoQ2. What are the short-term and long-term goals for the team or organization?
A Software Developer was asked 5mo agoQ3. Why do you want to work at Amazon?
Stay ahead in your career. Get AmbitionBox app


Trusted by over 1.5 Crore job seekers to find their right fit company
80 L+
Reviews
10L+
Interviews
4 Cr+
Salaries
1.5 Cr+
Users
Contribute to help millions
AmbitionBox Awards
Get AmbitionBox app

