LeetCode 286. Walls and Gates(벽과 문)
You are given a m x n 2D grid initialized with these three possible values.
-1
- A wall or an obstacle. 0
- A gate. INF
- Infinity means an empty room. We use the value 231 - 1 = 2147483647
to represent INF
as you may assume that the distance to a gate is less than 2147483647
. Fill each empty room with the distance to its nearest gate. If it is impossible to reach a gate, it should be filled with
INF
. For example, given the 2D grid:
INF -1 0 INF
INF INF INF -1
INF -1 INF -1
0 -1 INF INF
After running your function, the 2D grid should be:
3 -1 0 1
2 2 1 -1
1 -1 2 -1
0 -1 3 4
방법 1: 깊이 우선 검색.
public class Solution {
private void tag(int[][] rooms, int row, int col, int dist) {
if (row < 0 || row >= rooms.length || col < 0 || col >= rooms[row].length) return;
if (rooms[row][col] == -1 || rooms[row][col] < dist) return;
rooms[row][col] = dist;
tag(rooms, row, col-1, dist+1);
tag(rooms, row, col+1, dist+1);
tag(rooms, row-1, col, dist+1);
tag(rooms, row+1, col, dist+1);
}
public void wallsAndGates(int[][] rooms) {
for(int row = 0; row < rooms.length; row ++) {
for(int col = 0; col < rooms[row].length; col ++) {
if (rooms[row][col] == 0) tag(rooms, row, col, 0);
}
}
}
}
방법2: 광도 우선 검색public class Solution {
public void wallsAndGates(int[][] rooms) {
Position start = new Position(0,0,0);
Position tail = start;
for(int row=0; row= 0 && current.row < rooms.length && current.col >= 0 && current.col < rooms[current.row].length && rooms[current.row][current.col] >= current.dist) {
rooms[current.row][current.col] = current.dist;
tail.next = new Position(current.row, current.col-1, current.dist+1);
tail = tail.next;
tail.next = new Position(current.row, current.col+1, current.dist+1);
tail = tail.next;
tail.next = new Position(current.row-1, current.col, current.dist+1);
tail = tail.next;
tail.next = new Position(current.row+1, current.col, current.dist+1);
tail = tail.next;
}
current = current.next;
}
}
}
class Position {
int row, col, dist;
Position next;
Position(int row, int col, int dist) {
this.row = row;
this.col = col;
this.dist = dist;
}
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
java 백엔드에서 데이터를 트리로 변환하고 맵은 json 트리를 생성하여 백엔드로 되돌려줍니다. (백엔드 변환)java 백엔드, 데이터를 트리로 변환하고,map는 json 트리를 생성하여 전방으로 되돌려줍니다(백엔드 변환) 1. 왜 이런 블로그를 쓰나요? 2.java 백엔드 코드 3. 전환된 데이터는 다음과 유사한 형식으로 ...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.