-
Notifications
You must be signed in to change notification settings - Fork 1.5k
/
Copy path296_Best_Meeting_Point.py
57 lines (52 loc) · 1.64 KB
/
296_Best_Meeting_Point.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
class Solution(object):
# def minTotalDistance(self, grid):
# """
# :type grid: List[List[int]]
# :rtype: int
# """
# # sort
# rows = []
# cols = []
# for i in range(len(grid)):
# for j in range(len(grid[0])):
# if grid[i][j] == 1:
# rows.append(i)
# cols.append(j)
# row = rows[len(rows) / 2]
# cols.sort()
# col = cols[len(cols) / 2]
# return self.minDistance1D(rows, row) + self.minDistance1D(cols, col)
# def minDistance1D(self, points, origin):
# distance = 0
# for point in points:
# distance += abs(point - origin)
# return distance
def minDistance1D(self, points):
# two points
distance = 0
i, j = 0, len(points) - 1
while i < j:
distance += points[j] - points[i]
i += 1
j -= 1
return distance
def minTotalDistance(self, grid):
rows = self.collectRows(grid)
cols = self.collectCols(grid)
row = rows[len(rows) / 2]
col = cols[len(cols) / 2]
return self.minDistance1D(rows) + self.minDistance1D(cols)
def collectRows(self, grid):
rows = []
for i in range(len(grid)):
for j in range(len(grid[0])):
if grid[i][j] == 1:
rows.append(i)
return rows
def collectCols(self, grid):
cols = []
for j in range(len(grid[0])):
for i in range(len(grid)):
if grid[i][j] == 1:
cols.append(j)
return cols