-
Notifications
You must be signed in to change notification settings - Fork 353
/
Copy pathHourglass_Sum.py
65 lines (52 loc) · 1.28 KB
/
Hourglass_Sum.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
63
64
65
'''
Given a 6X6 2D Array, A:
1 1 1 0 0 0
0 1 0 0 0 0
1 1 1 0 0 0
0 0 0 0 0 0
0 0 0 0 0 0
0 0 0 0 0 0
An hourglass in A is a subset of values with indices falling in this pattern
in A's graphical representation:
a b c
d
e f g
There are 16 hourglasses in A, and an hourglass sum is the sum of an hourglass'
values. Like here, the maximum hourglass sum is 7 for the hourglass in the top
left corner.
Aim: Check all such hourglasses and print the maximum hourglass sum for the
2D array entered by user.
'''
# getting the 2D array as input
arr = []
for _ in range(6):
arr.append(list(map(int, input().rstrip().split())))
res = []
# looping through the 2D array
for x in range(0, 4):
for y in range(0, 4):
# selecting combinations that make an hourglass
s = sum(arr[x][y:y+3]) + arr[x+1][y+1] + sum(arr[x+2][y:y+3])
res.append(s)
# printing out the maximum hourglass sum
print(max(res))
'''
COMPLEXITY:
Time Complexity -> O(N^2)
Space Complexity -> O(N)
Sample Input:
0 0 1 2 3 0
0 0 0 5 0 0
1 0 0 7 1 0
0 0 0 0 0 0
0 1 1 1 0 1
0 0 4 0 0 4
Sample Output:
19
Explanation:
The hourglass with the maximum sum is,
1 2 3
5
0 7 1
with the sum being 1 + 2 + 3 + 5 + 0 + 7 + 1 = 19
'''