542 01 Matrix
542. 01 Matrix
1. Question
Given a matrix consists of 0 and 1, find the distance of the nearest 0 for each cell.
The distance between two adjacent cells is 1.
Example 1: Input:
0 0 0
0 1 0
0 0 0Output:
0 0 0
0 1 0
0 0 0Example 2: Input:
0 0 0
0 1 0
1 1 1Output:
Note:
The number of elements of the given matrix will not exceed 10,000.
There are at least one 0 in the given matrix.
The cells are adjacent in only four directions: up, down, left and right.
2. Implementation
(1) BFS
(2) DFS
3. Time & Space Complexity
BFS: 时间复杂度O(mn), 空间复杂度O(mn)
DFS: 时间复杂度O(mn), 空间复杂度O(mn)
Last updated
Was this helpful?