Problem Description
Given an n x n binary matrix grid, return the length of the shortest clear path in the matrix. If there is no clear path, return -1.
A clear path in a binary matrix is a path from the top-left cell (i.e., (0, 0)) to the bottom-right cell (i.e., (n - 1, n - 1)) such that:
- All the visited cells of the path are 0.
- All the adjacent cells of the path are 8-directionally connected (i.e., they are different and they share an edge or a corner).
The length of a clear path is the number of visited cells of this path.
Key Insights
- The problem requires finding the shortest path in a binary matrix, which can be effectively solved using breadth-first search (BFS).
- BFS is ideal for unweighted grids, as it explores all possible paths level by level, ensuring the shortest path is found first.
- Each cell in the matrix can connect to its 8 neighboring cells, offering multiple path options.
Space and Time Complexity
Time Complexity: O(n^2) - In the worst case, each cell in the n x n grid is processed once. Space Complexity: O(n^2) - The BFS queue and visited set can grow to the size of the grid.
Solution
To solve the problem, we will implement a breadth-first search (BFS) algorithm. The BFS will start from the top-left corner of the matrix and explore all possible paths to the bottom-right corner. We will maintain a queue to keep track of the current cell and the length of the path taken to reach there. We will also keep a set to track visited cells to avoid cycles.
- Initialize a queue with the starting cell (0, 0) and the path length of 1.
- While the queue is not empty, dequeue the front cell and check if it's the destination cell (n-1, n-1). If it is, return the path length.
- For each of the 8 possible directions, calculate the new cell coordinates. If the new cell is within bounds, is a 0, and has not been visited, mark it as visited and enqueue it with the incremented path length.
- If the queue is exhausted without finding the destination, return -1.