-
Notifications
You must be signed in to change notification settings - Fork 617
/
trapping_rainwater.py
62 lines (48 loc) · 1.35 KB
/
trapping_rainwater.py
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
"""
Problem Description:
Given an integer array A of non-negative integers representing an elevation map
where the width of each bar is 1, compute maximum water it is able to trap after raining.
"""
# Function to calculate the maximum water that can be trapped .
def max_water(arr, n):
temp = 0
# iterate the array
for i in range(1, n - 1):
# Find the element with maximum height on right of element i
max_right = arr[i]
for j in range(i+1, n):
max_right = max(max_right, arr[j])
# Find the element with maximum height on the left of element i
max_left = arr[i]
for j in range(i):
max_left = max(max_left, arr[j])
# Updating the temp value
temp = temp + (min(max_right, max_left) - arr[i])
return temp
if __name__ == "__main__":
arr = []
print("Enter number of elements")
# number of elements as input
n = int(input())
print("Enter the elements")
# iterating till the range
for i in range(0, n):
p = int(input())
arr.append(p)
print(max_water(arr, n))
"""
Test case 1:
input:
n=5
arr=[2,0,2,3,4]
output:
2
Test case 2:
input:
n=7
arr=[5,1,2,3,2,6,1]
output:
12
Time Complexity: O(n)
Space Complexity: O(1)
"""