1
+ #백준 14923번 미로 탈출
2
+
3
+ import sys
4
+ input = sys .stdin .readline
5
+ from collections import deque
6
+
7
+ dx = [- 1 ,1 ,0 ,0 ]
8
+ dy = [0 ,0 ,- 1 ,1 ]
9
+
10
+ n ,m = map (int ,input ().split ())
11
+
12
+ hx ,hy = map (int ,input ().split ())
13
+ ex ,ey = map (int ,input ().split ())
14
+
15
+ graph = []
16
+ for _ in range (n ):
17
+ graph .append (list (map (int ,input ().split ())))
18
+
19
+ #visited[x][y][magic]: (x,y) 지점에 남은 마법 횟수가 magic 일 경우 도달한 적이 있는지
20
+ visited = [[[False ]* 2 for _ in range (m )] for _ in range (n )]
21
+ visited [hx - 1 ][hy - 1 ][1 ]= True
22
+
23
+ def bfs ():
24
+ q = deque ()
25
+ q .append ((hx - 1 ,hy - 1 ,1 ,0 ))
26
+
27
+ while q :
28
+ #magic: 남은 마법 횟수, cost: 걸린 시간
29
+ x ,y ,magic ,cost = q .popleft ()
30
+ if x == ex - 1 and y == ey - 1 :
31
+ return cost
32
+
33
+ for i in range (4 ):
34
+ nx ,ny = x + dx [i ],y + dy [i ]
35
+ if 0 <= nx < n and 0 <= ny < m and not visited [nx ][ny ][magic ]:
36
+ #(nx,ny)가 벽이고 마법을 쓸 수 있을 경우 - 마법 사용
37
+ if magic == 1 and graph [nx ][ny ]== 1 :
38
+ visited [nx ][ny ][0 ]= True
39
+ q .append ((nx ,ny ,0 ,cost + 1 ))
40
+ #(nx,ny)가 빈 칸일 경우 - 그냥 이동
41
+ elif graph [nx ][ny ]== 0 :
42
+ visited [nx ][ny ][magic ]= True
43
+ q .append ((nx ,ny ,magic ,cost + 1 ))
44
+ return - 1
45
+
46
+ print (bfs ())
0 commit comments