X
2178번 - 미로 탐색
import java.awt.Point;
import java.util.Arrays;
import java.util.LinkedList;
import java.util.Queue;
import java.util.Scanner;
public class Main {
static int N, M;
static char[][] map;
static boolean[][] visit;
static Queue<CustomPoint> queue = new LinkedList<>();
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
N = sc.nextInt();
M = sc.nextInt();
map = new char[N][M];
visit = new boolean[N][M];
sc.nextLine();
for (int i = 0; i < N; i++) {
map[i] = sc.nextLine().toCharArray();
Arrays.fill(visit[i], false);
}
System.out.println(travel(0,0,0)+1);
sc.close();
}
static int travel(int x, int y,int cnt) {
if(x==N-1 && y==M-1)
return cnt;
int ret= 1000001;
visit[x][y] = true;
if(x-1>=0 && map[x-1][y]=='1' && !visit[x-1][y]) {
queue.add(new CustomPoint(new Point(x-1, y), cnt+1) );
}
if(x+1<N && map[x+1][y]=='1' && !visit[x+1][y]) {
queue.add(new CustomPoint(new Point(x+1, y), cnt+1));
}
if(y-1>=0 && map[x][y-1]=='1' && !visit[x][y-1]) {
queue.add(new CustomPoint(new Point(x, y-1), cnt+1));
}
if(y+1<M && map[x][y+1]=='1' && !visit[x][y+1]) {
queue.add(new CustomPoint(new Point(x, y+1), cnt+1));
}
while(!queue.isEmpty()) {
CustomPoint next = queue.poll();
if(!visit[next.p.x][next.p.y]) {
int result = travel(next.p.x,next.p.y,next.cnt);
if(result!=1000001) {
return result;
}
}
}
return ret;
}
}
class CustomPoint{
Point p;
int cnt;
public CustomPoint(Point p , int cnt) {
this.p = p;
this.cnt = cnt;
}
}
최근 글
같은 카테고리의 다른 글
- 9933번 민균이의 비밀번호
- 1764번 듣보잡
- 1475번 방 번호
- 1157번 단어공부
- 최소값과 최대값
- 구간 합 구하기
- 최소값
- 1181번 - 단어 정렬
- 11652번 - 카드
- 2169번 - 로봇 조종하기
- 2178번 - 미로 탐색
- 9084번 - 동전
- 2098번 - 외판원 순회
- 11049번 - 행렬 곱셉 순서
- 2302번 - 극장 좌석
- 1495번 - Day of Mourning
- 11060번 - 점프 점프
- 5557번 - 1학년
- 1697번 - 숨바꼭질
- 2631번 - 줄세우기
- 11004번 - K번째 수
- 9507번 - Generations of Tribbles
- 1904번 - 01타일
- 10942번 - 팰린드롬
- 10164번 - 격자상의 경로
- 2011번 - 암호코드
- 11066번 - 파일합치기
- 11054번 - 가장 긴 바이토닉 수열
- 11724번 - 연결 요소 개수
- 11403번 - 경로찾기
- 2667번 - 단지번호붙이기
- 3187번 - 양치기 꿍
- 2225번 - 합분해
- 1965번 - 상자넣기
- 1937번 - 욕심쟁이 판다
- 1890번 - 점프
- 1520번 - 내리막길