Skip to content

Commit 6029173

Browse files
kosuri-indupre-commit-ci[bot]cclauss
authored
add : trapped water program under dynamic programming (TheAlgorithms#10027)
* to add the trapped water program * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * to make changes for error : B006 * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * to make changes for error : B006 * to make changes for error : B006 * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * to make changes in doctest * to make changes in doctest * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * Update dynamic_programming/trapped_water.py Co-authored-by: Christian Clauss <[email protected]> * Update dynamic_programming/trapped_water.py Co-authored-by: Christian Clauss <[email protected]> * to make changes in parameters * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * to make changes in parameters * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * Update dynamic_programming/trapped_water.py Co-authored-by: Christian Clauss <[email protected]> * to make changes in parameters * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * for negative heights * Update dynamic_programming/trapped_water.py Co-authored-by: Christian Clauss <[email protected]> * to remove falsy * Final edits * tuple[int, ...] --------- Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> Co-authored-by: Christian Clauss <[email protected]>
1 parent 112dadd commit 6029173

File tree

1 file changed

+60
-0
lines changed

1 file changed

+60
-0
lines changed

dynamic_programming/trapped_water.py

+60
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
1+
"""
2+
Given an array of non-negative integers representing an elevation map where the width
3+
of each bar is 1, this program calculates how much rainwater can be trapped.
4+
5+
Example - height = (0, 1, 0, 2, 1, 0, 1, 3, 2, 1, 2, 1)
6+
Output: 6
7+
This problem can be solved using the concept of "DYNAMIC PROGRAMMING".
8+
9+
We calculate the maximum height of bars on the left and right of every bar in array.
10+
Then iterate over the width of structure and at each index.
11+
The amount of water that will be stored is equal to minimum of maximum height of bars
12+
on both sides minus height of bar at current position.
13+
"""
14+
15+
16+
def trapped_rainwater(heights: tuple[int, ...]) -> int:
17+
"""
18+
The trapped_rainwater function calculates the total amount of rainwater that can be
19+
trapped given an array of bar heights.
20+
It uses a dynamic programming approach, determining the maximum height of bars on
21+
both sides for each bar, and then computing the trapped water above each bar.
22+
The function returns the total trapped water.
23+
24+
>>> trapped_rainwater((0, 1, 0, 2, 1, 0, 1, 3, 2, 1, 2, 1))
25+
6
26+
>>> trapped_rainwater((7, 1, 5, 3, 6, 4))
27+
9
28+
>>> trapped_rainwater((7, 1, 5, 3, 6, -1))
29+
Traceback (most recent call last):
30+
...
31+
ValueError: No height can be negative
32+
"""
33+
if not heights:
34+
return 0
35+
if any(h < 0 for h in heights):
36+
raise ValueError("No height can be negative")
37+
length = len(heights)
38+
39+
left_max = [0] * length
40+
left_max[0] = heights[0]
41+
for i, height in enumerate(heights[1:], start=1):
42+
left_max[i] = max(height, left_max[i - 1])
43+
44+
right_max = [0] * length
45+
right_max[-1] = heights[-1]
46+
for i in range(length - 2, -1, -1):
47+
right_max[i] = max(heights[i], right_max[i + 1])
48+
49+
return sum(
50+
min(left, right) - height
51+
for left, right, height in zip(left_max, right_max, heights)
52+
)
53+
54+
55+
if __name__ == "__main__":
56+
import doctest
57+
58+
doctest.testmod()
59+
print(f"{trapped_rainwater((0, 1, 0, 2, 1, 0, 1, 3, 2, 1, 2, 1)) = }")
60+
print(f"{trapped_rainwater((7, 1, 5, 3, 6, 4)) = }")

0 commit comments

Comments
 (0)