-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdiag_sum.py
295 lines (247 loc) · 5.51 KB
/
diag_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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
DEBUG = False
#
# Boring computations of sum of elements at i-th diagonal
#
input = [
[0, 1, 0, 0],
[1, 0, 0, 0],
[0, 0, 0, 1],
[0, 0, 1, 0]
]
#
# Left to Right, Bottom-Up
#
# 0 - 0,3
# 1 - 0,2 + 1,3
# 2 - 0,1 + 1,2 + 2,3
# 3 - 0,0 + 1,1 + 2,2 + 3,3
# 4 - 1,0 + 2,1 + 3,2
# 5 - 2,0 + 3,1
# 6 - 3,0
#
# I < N - 1:
# X: 0 to i + 1, ++
# Y: N - i -1 to N, ++
#
# I > N - 1:
# X: I - N + 1 to N, ++
# Y: 0 to 2 * N - 1 - I - 1, ++
#
# Left to Right, Top-Down
#
# 0 - 0,0
# 1 - 0,1 + 1,0
# 2 - 0,2 + 1,1 + 2,0
# 3 - 0,3 + 1,2 + 2,1 + 3,0
# 4 - 1,3 + 2,2 + 3,1
# 5 - 2,3 + 3,2
# 6 - 3,3
#
# I <= N - 1:
# X: 0 to i + 1, ++
# Y: i to 0, --
#
# I > N - 1:
# X: I - N + 1 to N, ++
# Y: N-1 to I - N + 1, --
input2 = [
[40, 1, 100],
[50, 25, 99],
[100, 50, 35]
]
input3 = [
[1, 1, 10, 3, 5],
[0, 1, 2, -10, 2],
[0, 0, 0, 1, 5],
[10, 0, 5, 1, 1],
[5, -5, 5, 0, 1]
]
def bottom_up(A):
num_of_diags = len(A)
l = 2 * num_of_diags - 1
res = []
for i in xrange(l):
diag_sum = 0
if i <= num_of_diags - 1:
x = 0
y = num_of_diags - i - 1
if DEBUG:
print "i", i
while x < i + 1 and x < num_of_diags and y < num_of_diags:
if DEBUG:
print "x:", x, "y:", y
diag_sum += A[y][x]
y += 1
x += 1
else:
if DEBUG:
print "i", i
x = i - num_of_diags + 1
y = 0
while x < num_of_diags and y < 2 * num_of_diags - 1 - i:
if DEBUG:
print "x:", x, "y:", y
diag_sum += A[y][x]
x += 1
y += 1
res.append(diag_sum)
return res
def top_down(A):
sz = len(A)
num_of_diags = 2 * sz - 1
res = []
for i in xrange(num_of_diags):
diag_sum = 0
if i <= sz - 1:
x = 0
y = i
if DEBUG:
print "i", i
while x < min(i + 1, sz) and y >= 0:
if DEBUG:
print "x:", x, "y:", y
diag_sum += A[y][x]
y -= 1
x += 1
else:
if DEBUG:
print "i", i
x = i - sz + 1
y = sz - 1
while x < sz and y >= i - sz + 1:
if DEBUG:
print "x:", x, "y:", y
diag_sum += A[y][x]
x += 1
y -= 1
res.append(diag_sum)
return res
#
# Special cases when we have matrix with 0 & 1 only
#
#
# input = [
# [0, 1, 0, 0],
# [1, 0, 0, 0],
# [0, 0, 0, 1],
# [0, 0, 1, 0]
# ]
#
# Can be compactly represented as:
#
input_repr = [1, 0, 3, 2]
def bottom_up_compact(arr):
sz = len(arr)
l = 2 * sz - 1
res = []
for i in xrange(l):
diag_sum = 0
if i <= sz - 1:
x = 0
y = sz - i - 1
if DEBUG:
print "i", i
while x < i + 1 and x < sz and y < sz:
if DEBUG:
print "x:", x, "y:", y
if arr[y] == x:
diag_sum += 1
y += 1
x += 1
else:
if DEBUG:
print "i", i
x = i - sz + 1
y = 0
while x < sz and y < 2 * sz - 1 - i:
if DEBUG:
print "x:", x, "y:", y
if arr[y] == x:
diag_sum += 1
x += 1
y += 1
res.append(diag_sum)
return res
def top_down_compact(arr):
sz = len(arr)
num_of_diags = 2 * sz - 1
res = []
for i in xrange(num_of_diags):
diag_sum = 0
if i <= sz - 1:
x = 0
y = i
if DEBUG:
print "i", i
while x < min(i + 1, sz) and y >= 0:
if DEBUG:
print "x:", x, "y:", y
if arr[y] == x:
diag_sum += 1
y -= 1
x += 1
else:
if DEBUG:
print "i", i
x = i - sz + 1
y = sz - 1
while x < sz and y >= i - sz + 1:
if DEBUG:
print "x:", x, "y:", y
if arr[y] == x:
diag_sum += 1
x += 1
y -= 1
res.append(diag_sum)
return res
# print bottom_up_compact(input_repr)
# print bottom_up(input)
# print top_down_compact(input_repr)
# print top_down(input)
# input = [
# [0, 1, 0, 0],
# [1, 0, 0, 0],
# [0, 0, 0, 1],
# [0, 0, 1, 0]
# ]
#
# 0,3 - 0
# 0,2; 1,3 - 1
# 0,1; 1,2; 2,3 - 2
# 0,0; 1,1; 2,2; 3,3 - 3
# 1,0; 2,1; 3,2 - 4
# 2,0; 3,1 - 5
# 3,0 - 6
def diag_num_bottom_up(A, x, y):
n = len(A)
if x < y:
return n - 1 - (y - x)
elif x > y:
return n - 1 + (x - y)
else:
return n - 1
# print diag_num_bottom_up(input3, 2, 3)
# input = [
# [0, 1, 0, 0],
# [1, 0, 0, 0],
# [0, 0, 0, 1],
# [0, 0, 1, 0]
# ]
#
# 0,0 - 0
# 0,1; 1,0 - 1
# 0,2; 1,1; 2,0 - 2
# 0,3; 1,2; 2,1; 3,0 - 3
# 1,3; 2,2; 3,1 - 4
# 2,3; 3,2 - 5
# 3,3 - 6
def diag_num_top_down(A, x, y):
return x + y
# input3 = [
# [1, 1, 10, 3, 5],
# [0, 1, 2, -10, 2],
# [0, 0, 0, 1, 5],
# [10, 0, 5, 1, 1],
# [5, -5, 5, 0, 1]
# ]
print diag_num_top_down(input3, 2, 3)