1091. Shortest Path in Binary Matrix
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.
Example 1:
Input: [[0,1],[1,0]]

Output: 2
Example 2:
Input: [[0,0,0],[1,1,0],[1,1,0]]

Output: 4
Note:
1 <= grid.length == grid[0].length <= 100grid[r][c]is0or1
# @lc code=start
using LeetCode
function shortest_path_binary_matrix(mat::Matrix{Int})
visited = fill(false, size(mat))
q = [CartesianIndex(1, 1)]
dist = [1]
visited[1, 1] = true
directions = [CartesianIndex(i, j) for i in -1:1, j in -1:1 if i != 0 || j != 0]
res = 0
while !visited[end, end]
frt = popfirst!(q)
dst = popfirst!(dist)
for dir in directions
next_coord = frt + dir
next_coord ∉ CartesianIndices(mat) && continue
visited[next_coord] && continue
visited[next_coord] = true
if mat[next_coord] == 0
push!(q, next_coord)
push!(dist, dst + 1)
res = dst + 1
end
end
end
return res
end
# @lc code=endshortest_path_binary_matrix (generic function with 1 method)
This page was generated using DemoCards.jl and Literate.jl.