1057. Campus bikes
On a campus represented as a 2D grid, there are Nworkers and Mbikes, with N <= M. Each worker and bike is a 2D coordinate on this grid.
Our goal is to assign a bike to each worker. Among the available bikes and workers, we choose the (worker, bike) pair with the shortest Manhattan distance between each other, and assign the bike to that worker. (If there are multiple (worker, bike) 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). We repeat this process until there are no available workers.
The Manhattan distance between two points p1and p2is Manhattan(p1, p2) = |p1.x - p2.x| + |p1.y - p2.y|. Return a vector ansof length N, where ans[i]is the index (0-indexed) of the bike that the i-th worker is assigned to.
Example 1:

Example 2:

Note:
0 <= workers[i][j], bikes[i][j] < 1000All worker and bike locations are distinct.
1 <= workers.length <= bikes.length <= 1000
Thoughts:
number of workers and bikes is bounded -> Bucket sort Pigeonhole sort: buckets[i]: a list with <worker id, bike id> pair with distance i (Original post, Java post)
Priority queue when number of workers and bikes is not bounded (Original post, Python post)
Code: Bucket Sort T: O(M *N), S: O(M * N)
Code: ~ Java
Code: PQ T: O(nlogn)
Code: ~ Python
Fewer lines:
Last updated
Was this helpful?