317. Shortest Distance from All Buildings
Difficulty: Hard
Topics: Breadth-first Search
Similar Questions:
Problem:
You want to build a house on an empty land which reaches all buildings in the shortest amount of distance. You can only move up, down, left and right. You are given a 2D grid of values 0, 1 or 2, where:
- Each 0 marks an empty land which you can pass by freely.
- Each 1 marks a building which you cannot pass through.
- Each 2 marks an obstacle which you cannot pass through.
Example:
Input: [[1,0,2,0,1],[0,0,0,0,0],[0,0,1,0,0]] 1 - 0 - 2 - 0 - 1 | | | | | 0 - 0 - 0 - 0 - 0 | | | | | 0 - 0 - 1 - 0 - 0 Output: 7 Explanation: Given three buildings at(0,0)
,(0,4)
,(2,2)
, and an obstacle at(0,2), t
he point(1,2)
is an ideal empty land to build a house, as the total travel distance of 3+3+1=7 is minimal. So return 7.
Note:
There will be at least one building. If it is not possible to build such house according to the above rules, return -1.
Solutions:
class Solution {
public:
int shortestDistance(vector<vector<int>>& grid) {
int m = grid.size();
if (m == 0) return -1;
int n = grid[0].size();
if (n == 0) return -1;
vector<vector<bool>> reachable(m, vector<bool>(n, true));
int emptyCount = 0;
for (int i = 0; i < m; ++i) {
for (int j = 0; j < n; ++j) {
if (grid[i][j] == 0) {
++emptyCount;
}
}
}
if (emptyCount == 0) return -1;
for (int i = 0; i < m; ++i) {
for (int j = 0; j < n; ++j) {
if (grid[i][j] != 1) continue;
auto visited = bfs(grid, i, j);
matrixAdd(m, n, reachable, visited);
}
}
int minDistance = INT_MAX;
for (int i = 0; i < m; ++i) {
for (int j = 0; j < n; ++j) {
if (grid[i][j] <= 0 && reachable[i][j]) {
minDistance = min(minDistance, -grid[i][j]);
}
}
}
return minDistance == INT_MAX ? -1 : minDistance;
}
private:
void matrixAdd(int m, int n, vector<vector<bool>>& reachable, vector<vector<bool>>& visited) {
for (int i = 0; i < m; ++i) {
for (int j = 0; j < n; ++j) {
reachable[i][j] = reachable[i][j] && visited[i][j];
}
}
}
int directions[4][2] {
{1, 0},
{-1, 0},
{0, 1},
{0, -1}
};
vector<vector<bool>> bfs(vector<vector<int>>& grid, int row, int col) {
int m = grid.size();
int n = grid[0].size();
vector<vector<bool>> visited(m, vector<bool>(n, false));
int count = 0;
int distance = 0;
queue<pair<int, int>> q;
q.push({row, col});
while (!q.empty()) {
int size = q.size();
for (int i = 0; i < size; ++i) {
auto coord = q.front(); q.pop();
grid[coord.first][coord.second] -= distance;
for (int d = 0; d < 4; ++d) {
int newRow = coord.first + directions[d][0];
int newCol = coord.second + directions[d][1];
if (newRow >= 0 && newRow < m && newCol >= 0 && newCol < n && grid[newRow][newCol] <= 0 && !visited[newRow][newCol]) {
q.push({newRow, newCol});
visited[newRow][newCol] = true;
++count;
}
}
}
++distance;
}
return visited;
}
};