Shortest Path in Binary Matrix
BFS
Problem
In an N by N square grid, each cell is either empty (0) or blocked (1).
A clear path from top-left to bottom-right has length k if and only if it is composed of cells C_1, C_2, ..., C_k such that:
Adjacent cells
C_iandC_{i+1}are connected 8-directionally (ie., they are different and share an edge or corner)C_1is at location(0, 0)(ie. has valuegrid[0][0])C_kis at location(N-1, N-1)(ie. has valuegrid[N-1][N-1])If
C_iis located at(r, c), thengrid[r][c]is empty (ie.grid[r][c] == 0).
Return the length of the shortest such clear path from top-left to bottom-right. If such a path does not exist, return -1.


Thought Process
Can traverse 8-directionally
is at (0, 0) and is at (N-1, N-1) i.e. the last cell
Return shortest path from top left to bottom right
Solution
Time Complexity
Time: O(n) where n is the number of 0's in our queue since we're pulling them out and looking at the neighbors
Space: O(n) where n is the number of 0's for the shortest path
Last updated
Was this helpful?