[백준] 14940번 쉬운 최단거리
난이도
골드 5
문제
https://www.acmicpc.net/problem/14940
풀이
BFS로 문제를 해결했다.
여기서 주의할 점은 "원래 갈 수 없는 땅인 위치는 0을 출력하고, 원래 갈 수 있는 땅인 부분 중에서 도달할 수 없는 위치는 -1을 출력한다." 이 부분이다.
위 조건을 따져주기 위해서 2차원 방문배열로 조건을 줘서 해결했다.
방문했거나 map의 값이 0인 경우 그대로 map[i][j]를 출력
아니라면 -1을 출력
코드
package 그래프탐색;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.LinkedList;
import java.util.Queue;
import java.util.StringTokenizer;
public class BOJ14940 {
static int n, m;
static int[][] map;
static boolean[][] visit;
static int[] dx = {-1, 1, 0, 0};
static int[] dy = {0, 0, -1, 1};
static Queue<int[]> q = new LinkedList<>();
public static void main(String[] args) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
StringTokenizer st;
st = new StringTokenizer(br.readLine());
n = Integer.parseInt(st.nextToken());
m = Integer.parseInt(st.nextToken());
map = new int[n][m];
visit = new boolean[n][m];
for (int i = 0; i < n; i++) {
st = new StringTokenizer(br.readLine());
for (int j = 0; j < m; j++) {
map[i][j] = Integer.parseInt(st.nextToken());
if (map[i][j] == 2) {
q.add(new int[]{i, j});
map[i][j] = 0;
}
}
}
bfs();
for (int i = 0; i < n; i++) {
for (int j = 0; j < m; j++) {
if (visit[i][j] || map[i][j] == 0)
System.out.print(map[i][j] + " ");
else
System.out.print("-1 ");
}
System.out.println();
}
}
static void bfs() {
while (!q.isEmpty()) {
int[] tmp = q.poll();
int tx = tmp[0];
int ty = tmp[1];
visit[tx][ty] = true;
for (int i = 0; i < 4; i++) {
int nx = tx + dx[i];
int ny = ty + dy[i];
if (nx >= 0 && nx < n && ny >= 0 && ny < m) {
if (!visit[nx][ny] && map[nx][ny] == 1) {
visit[nx][ny] = true;
map[nx][ny] = map[tx][ty] + 1;
q.add(new int[]{nx, ny});
}
}
}
}
}
}
Author And Source
이 문제에 관하여([백준] 14940번 쉬운 최단거리), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@kimmjieun/백준-14940번-쉬운-최단거리저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)