728x90
https://www.acmicpc.net/problem/2178
문제 풀이
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 Main {
public static void main(String[] args) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
StringTokenizer st = new StringTokenizer(br.readLine());
int n = Integer.parseInt(st.nextToken()),
m = Integer.parseInt(st.nextToken()), map[][] = new int[n][m], i, j, d;
String s;
for (i = 0; i < n; ++i) {
s = br.readLine();
for (j = 0; j < m; ++j)
map[i][j] = s.charAt(j) - '0';
}
br.close();
int cnt = 0, dx[] = {0, 0, 1, -1}, dy[] = {1, -1, 0, 0}, pos[], x, y, c, nx, ny, nc;
boolean visited[][] = new boolean[n][m];
visited[0][0] = true;
Queue<int[]> queue = new LinkedList<>(); // x, y, cnt
queue.add(new int[]{0, 0, 1});
while (!queue.isEmpty()) {
pos = queue.remove();
x = pos[0];
y = pos[1];
c = pos[2];
if (x == n - 1 && y == m - 1) {
cnt = c;
break;
}
nc = c + 1;
for (d = 0; d < 4; ++d) {
nx = x + dx[d];
ny = y + dy[d];
if (nx < 0 || nx >= n || ny < 0 || ny >= m ||
map[nx][ny] == 0 || visited[nx][ny])
continue;
visited[nx][ny] = true;
queue.add(new int[]{nx, ny, nc});
}
}
System.out.println(cnt);
}
}
반응형
'코딩 문제 풀기 ( Algorithm problem solving ) > 백준 온라인 저지 ( BOJ )' 카테고리의 다른 글
[백준(Baekjoon)][자바(java)] 7579 : 토마토 / 그래프와 순회 (0) | 2022.05.24 |
---|---|
[백준(Baekjoon)][자바(java)] 7576 : 토마토 / 그래프와 순회 (0) | 2022.05.24 |
[백준(Baekjoon)][자바(java)] 1012 : 유기농 배추 / 그래프와 순회 (0) | 2022.05.24 |
[백준(Baekjoon)][자바(java)] 2667 : 단지번호붙이기 / 그래프와 순회 (0) | 2022.05.24 |
[백준(Baekjoon)][자바(java)] 1260 : DFS와 BFS / 그래프와 순회 (0) | 2022.05.24 |