728x90
반응형
https://www.acmicpc.net/problem/2178
문제 파악
-BFS를 이용해 최소 거리 구하기
-1은 이동 가능한 거리, 0은 이동 불가능한 거리
접근 방법
-(1,1)이 시작점이지만 좌표 상 0,0이므로 고려해서 풀기
코드 구현
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.*;
public class Main {
static int answer=0;
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());
int m=Integer.parseInt(st.nextToken());
int[][] graph = new int[n][m];
for (int i = 0; i < n; i++) {
String line = br.readLine();
for (int j = 0; j < m; j++) {
graph[i][j] = line.charAt(j) - '0';
}
}
Queue<int[]> que = new ArrayDeque<>();
boolean[][] visited = new boolean[n][m];
que.offer(new int[]{0,0,1});
int[] toX={-1,1,0,0};int[] toY={0,0,-1,1};
while(!que.isEmpty()) {
int[] cur = que.poll();
int x=cur[0];int y=cur[1];
int cnt=cur[2];
if(x==n-1&&y==m-1){
answer=cnt;
System.out.println(answer);
}
for(int i=0;i<4;i++){
int nx=x+toX[i];
int ny=y+toY[i];
if(nx>=0&&ny>=0&&nx<n&&ny<m&&graph[nx][ny]!=0){
if(!visited[nx][ny]){
visited[nx][ny]=true;
que.offer(new int[]{nx,ny,cnt+1});
}
}
}
}
}
}
프로그래머스의 <미로 찾기>와 제목이 유사!
https://hansjour.tistory.com/169
반응형
'alorithm > Baekjoon' 카테고리의 다른 글
[백준] 2648번 : 안전 영역 (2) | 2024.09.02 |
---|---|
[백준] 바이러스 -재 풀이 (0) | 2024.08.13 |
[백준] 2667번: 단지번호붙이기 (0) | 2024.08.13 |
[백준] 2644번: 촌수계산 (0) | 2024.08.13 |
[Python/백준] 23791번 : ZOAC 4 (0) | 2024.06.17 |