On a campus represented on the X-Y plane, there are n workers and m bikes, with n <= m.
You are given an array workers of length n where workers[i] = [xi, yi]
is the position of the ith worker. You are also given an array bikes of length m where bikes[j] = [xj, yj] is the position of the jth bike. All the given positions are unique.
Assign a bike to each worker. Among the available bikes and workers, we choose the (workeri, bikej) pair with the shortest Manhattan distance between each other and assign the bike to that worker.
If there are multiple (workeri, bikej) pairs with the same shortest
Manhattan distance , we choose the pair with the smallest worker index. If there are multiple ways to do that, we choose the pair with the smallest bike index. Repeat this process until there are no available workers.
Return an arrayanswerof lengthn, whereanswer[i]_is the index (0-indexed) of the bike that the _ithworker is assigned to.
The Manhattan distance between two points p1 and p2 is Manhattan(p1, p2) = |p1.x - p2.x| + |p1.y - p2.y|.
Input: workers =[[0,0],[2,1]], bikes =[[1,2],[3,3]]Output: [1,0]Explanation: Worker 1 grabs Bike 0 as they are closest(without ties), and Worker 0is assigned Bike 1. So the output is[1,0].
Example 2:
1
2
3
Input: workers =[[0,0],[1,1],[2,0]], bikes =[[1,0],[2,2],[2,1]]Output: [0,2,1]Explanation: Worker 0 grabs Bike 0 at first. Worker 1 and Worker 2 share the same distance to Bike 2, thus Worker 1is assigned to Bike 2, and Worker 2 will take Bike 1. So the output is[0,2,1].
We want to assign each worker the closest available bike, breaking ties by worker index and then bike index. By precomputing all possible (worker, bike) pairs with their Manhattan distances and sorting them, we can greedily assign bikes to workers in the required order.
classSolution {
funassignBikes(workers: Array<IntArray>, bikes: Array<IntArray>): IntArray {
val n = workers.size
val m = bikes.size
val pairs = mutableListOf<Triple<Int, Int, Int>>()
for (i in0 until n) {
for (j in0 until m) {
val d = Math.abs(workers[i][0] - bikes[j][0]) + Math.abs(workers[i][1] - bikes[j][1])
pairs.add(Triple(d, i, j))
}
}
pairs.sortWith(compareBy({ it.first }, { it.second }, { it.third }))
val ans = IntArray(n) { -1 }
val usedB = BooleanArray(m)
var assigned = 0for ((d, i, j) in pairs) {
if (ans[i] == -1&& !usedB[j]) {
ans[i] = j
usedB[j] = true assigned++if (assigned == n) break }
}
return ans
}
}
classSolution:
defassignBikes(self, workers: list[list[int]], bikes: list[list[int]]) -> list[int]:
n, m = len(workers), len(bikes)
pairs = []
for i in range(n):
for j in range(m):
d = abs(workers[i][0] - bikes[j][0]) + abs(workers[i][1] - bikes[j][1])
pairs.append((d, i, j))
pairs.sort()
ans = [-1] * n
usedB = [False] * m
assigned =0for d, i, j in pairs:
if ans[i] ==-1andnot usedB[j]:
ans[i] = j
usedB[j] =True assigned +=1if assigned == n:
breakreturn ans