-
Notifications
You must be signed in to change notification settings - Fork 0
/
296. Best Meeting Point.py
44 lines (34 loc) · 1.23 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
""" Given an m x n binary grid grid where each 1 marks the home of one friend, return the minimal total travel distance.
The total travel distance is the sum of the distances between the houses of the friends and the meeting point.
The distance is calculated using Manhattan Distance, where distance(p1, p2) = |p2.x - p1.x| + |p2.y - p1.y|.
Example 1:
Input: grid = [[1,0,0,0,1],[0,0,0,0,0],[0,0,1,0,0]]
Output: 6
Explanation: Given three friends living at (0,0), (0,4), and (2,2).
The point (0,2) is an ideal meeting point, as the total travel distance of 2 + 2 + 2 = 6 is minimal.
So return 6.
Example 2:
Input: grid = [[1,1]]
Output: 1 """
from statistics import median
class Solution:
def minTotalDistance(self, grid) -> int:
xsl = []
ysl = []
R = len(grid)
C = len(grid[0])
pts =[]
for y in range(R):
for x in range(C):
if grid[y][x] == 1:
xsl.append(x)
ysl.append(y)
pts.append((x, y))
N = len(xsl)
x = int(median(xsl))
y = int(median(ysl))
ans = 0
for p in pts:
ans += abs(p[0]-x)
ans += abs(p[1]-y)
return ans