317. Shortest Distance from All Buildings - Detailed Explanation
Problem Statement
You are given a 2D grid where each cell can be:
- 0: Empty land
- 1: A building
- 2: An obstacle
Your task is to find an empty land cell such that the sum of the Manhattan distances from this cell to all the buildings is minimized. The Manhattan distance between two points (i, j) and (k, l) is calculated as |i - k| + |j - l|.
If it is not possible for any empty cell to reach all buildings (due to obstacles or isolation), return -1.
Example 1
Input:
grid = [
[1, 0, 2, 0, 1],
[0, 0, 0, 0, 0],
[0, 0, 1, 0, 0]
]
Output: 7
Explanation:
- There are 3 buildings located at (0,0), (0,4), and (2,2).
- The empty cell at (1,2) is optimal:
- Distance to (0,0): |1-0| + |2-0| = 1 + 2 = 3
- Distance to (0,4): |1-0| + |2-4| = 1 + 2 = 3
- Distance to (2,2): |1-2| + |2-2| = 1 + 0 = 1
- Total distance = 3 + 3 + 1 = 7
Example 2
Input:
grid = [
[1, 0],
[0, 1]
]
Output: -1
Explanation: There is no empty cell that can reach both buildings due to their positions or intervening obstacles.
Constraints
- The grid dimensions (m x n) can vary.
- The grid contains a mix of buildings, empty lands, and obstacles.
- Efficiency is key, as the grid can be moderately large and many buildings might be present.
Hints
-
Breadth-First Search (BFS):
- Instead of checking every empty cell, consider running BFS from each building. This will allow you to propagate distances outward from each building.
-
Distance and Reach Accumulation:
- Use two auxiliary matrices:
- distances: To accumulate the sum of distances from all buildings to each empty cell.
- reach: To count how many buildings can reach a given empty cell.
- Use two auxiliary matrices:
-
Final Decision:
- After processing all buildings, examine each empty cell (value 0) that is reachable from all buildings (i.e. its reach equals the total number of buildings). Return the minimum distance sum among these cells.
Approaches
Approach 1: Brute Force (Inefficient)
- Idea:
- For every empty cell, perform a BFS or DFS to compute the distance from that cell to every building.
- Downside:
- Repeated searches from every empty cell lead to high computational costs (O(m*n*(m*n)) in worst-case scenarios).
Approach 2: Multi-Source BFS from Each Building (Optimal)
- Idea:
- Perform a BFS from each building. During each BFS, update two matrices:
- distances[i][j]: The cumulative distance sum from all buildings that can reach cell (i, j).
- reach[i][j]: The count of buildings that can reach cell (i, j).
- Perform a BFS from each building. During each BFS, update two matrices:
- Process:
- Count the total number of buildings in the grid.
- For each building, perform a BFS to compute and update distances for all reachable empty cells.
- After processing, iterate over every empty cell. If an empty cell is reached from all buildings (i.e.
reach[i][j] == totalBuildings
), consider its cumulative distance. - Return the minimum distance found. If no cell meets the criteria, return -1.
- Time Complexity:
- Each building's BFS runs in O(m*n) and if there are B buildings, overall complexity is O(B * m * n).
Step-by-Step Walkthrough and Visual Example
Consider the grid:
[
[1, 0, 2, 0, 1],
[0, 0, 0, 0, 0],
[0, 0, 1, 0, 0]
]
-
Initialization:
- Total number of buildings = 3.
- Create two matrices
distances
andreach
(size equal to the grid), filled with 0s.
-
BFS from Each Building:
- For the building at (0,0):
- Start a BFS, updating reachable empty cells with their distance from (0,0).
- Repeat the BFS for buildings at (0,4) and (2,2).
- For the building at (0,0):
-
Accumulate and Evaluate:
- After all BFS runs, each empty cell contains:
- The total distance from all buildings that could reach it.
- A count of how many buildings reached it.
- Only consider cells where the reach count equals 3 (all buildings). Among these, select the cell with the minimum distance sum. In our example, the cell (1,2) gives a sum of 7.
- After all BFS runs, each empty cell contains:
Code Implementation
Python Code
Java Code
Complexity Analysis
- Time Complexity:
- For each building, a BFS traverses O(m * n) cells in the worst case.
- If there are B buildings, the overall time complexity is O(B * m * n).
- Space Complexity:
- Additional matrices
distances
andreach
each take O(m * n) space. - Each BFS uses a visited matrix, also O(m * n), but it is reinitialized for each building.
- Additional matrices
Common Mistakes and Edge Cases
-
Not Checking Reachability:
- Always ensure that an empty cell is reached from all buildings (i.e.
reach[i][j]
equals the total number of buildings). If not, it should be ignored.
- Always ensure that an empty cell is reached from all buildings (i.e.
-
Improper Boundary Checks:
- When moving in four directions, validate grid boundaries to prevent out-of-bound errors.
-
Incorrect BFS Initialization:
- Each BFS must have its own visited matrix to avoid incorrect propagation of distances.
-
Handling Disconnected Regions:
- If no empty cell can reach all buildings, your function must return -1.
Alternative Variations and Related Problems
-
Shortest Distance in a Maze:
- Similar grid-based BFS problems where distances are computed under obstacles.
-
Walls and Gates:
- A problem where you update empty rooms with the distance to the nearest gate using multi-source BFS.
-
Multi-Source BFS Problems:
- Problems that require processing distances from multiple starting points simultaneously.
Related Problems for Further Practice
- Walls and Gates
- 01 Matrix
- Rotten Oranges
- Graph Shortest Path Problems (using BFS/DFS)
- Time-Based Key-Value Store
GET YOUR FREE
Coding Questions Catalog
