1057. Campus Bikes
https://leetcode.com/problems/campus-bikes/
On a campus represented as a 2D grid, there are N workers and M bikes, 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 p1 and p2 is Manhattan(p1, p2) = |p1.x - p2.x| + |p1.y - p2.y|.
Return a vector ans of 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
给一系列A的坐标和B的坐标,给每个a找曼哈顿距离最近的b,曼哈顿距离dist(a, b) = |a.x - a.x| + |b.y - b.y|。最短距离BFS或DP/greedy。这道题没有明显的格子,直接算出所有(a, b) pair的距离并从小到大排序,然后遍历所有距离并greedy的每次选dist最小来分配。由于距离有限([0, 2000]),可以直接用bucket sort。
参考自这。
直接引用了这的答案
Last updated
Was this helpful?