leetcode-1057-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:
1 | Input: workers = [[0,0],[2,1]], bikes = [[1,2],[3,3]] |
Example 2:
1 | Input: workers = [[0,0],[1,1],[2,0]], bikes = [[1,0],[2,2],[2,1]] |
Note:
0 <= workers[i][j], bikes[i][j] < 1000
- All worker and bike locations are distinct.
1 <= workers.length <= bikes.length <= 1000
分析
整个题目中,所有worker与bike的距离最大是2000,因此可以使用桶排序,求出所有的{worker, bike}并将其放入到以距离为下标的桶中,共有 $mn$ 对。然后再从距离最小的对开始考虑与分配。这样就省去了排序的时间,总体时间复杂度 $O(mn)$ ,空间复杂度 $O(m*n)$ 。
代码
1 | class Solution { |
Author: Hatton.Liu
Link: http://hattonl.github.io/2020/03/19/leetcode-1057/
License: 知识共享署名-非商业性使用 4.0 国际许可协议