-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBFS_shortest.py
45 lines (40 loc) · 1.06 KB
/
BFS_shortest.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
def distance(maze, s, e):
que = []
que.append(s)
maze[s[0]][s[1]] = -1
def isValid(p):
return 0<=p[0]<len(maze) and 0<=p[1]<len(maze[0]) and maze[p[0]][p[1]] == 1
while que:
here = que.pop(0)
here_dis = maze[here[0]][here[1]]
next = [(here[0]-1, here[1]),
(here[0], here[1]+1),
(here[0]+1, here[1]),
(here[0], here[1]-1)]
for n in next:
if isValid(n):
que.append(n)
maze[n[0]][n[1]] = here_dis - 1
if __name__ == '__main__':
s = (3, 2)
e = (5, 5)
maze = [
[1, 1, 1, 1, 1, 1],
[0, 0, 1, 0, 0, 1],
[1, 1, 1, 0, 1, 1],
[1, 0, 0, 0, 1, 0],
[1, 1, 1, 0, 1, 0],
[0, 0, 1, 1, 1, 1]
]
maze = [
[1, 0, 1, 1, 1],
[1, 0, 1, 0, 1],
[1, 0, 1, 1, 1],
[1, 1, 1, 0, 1],
[0, 0, 0, 0, 1]
]
e = (4, 4)
distance(maze, s, e)
for m in maze:
print(m)
print(maze[e[0]][e[1]])