解题思路:
注意事项:
参考代码:
def get(st,mmp,n,m): for i in range(n): for j in range(m): if mmp[i][j] == st: return [i, j, 0] def bfs(mmp): x = [1, -1, 0, 0] y = [0, 0, 1, -1] li = get('@', mmp, a, b) end = get('*', mmp, a, b) queue = [] ans = 0 queue.append(li) while queue: mmp[li[0]][li[1]] = '#' xx, yy, ans = queue.pop(0) if xx == end[0] and yy == end[1]: return ans for i in range(4): lx = xx + x[i] ly = yy + y[i] if lx >= 0 and lx < a and ly >= 0 and ly < b and mmp[lx][ly] != '#': queue.append([lx, ly, ans + 1]) mmp[lx][ly] = '#' return -1 while True: a,b=map(int,input().split()) if a ==0 and b==0: break mmp = [ list(input()) for _ in range(a)] print(bfs(mmp))
0.0分
1 人评分
C二级辅导-分段函数 (C语言代码)浏览:583 |
C语言程序设计教程(第三版)课后习题10.2 (C语言代码)浏览:1152 |
奖学金 (C++代码)浏览:2053 |
回文数(一) (C语言代码)浏览:809 |
WU-整数平均值 (C++代码)浏览:1307 |
核桃的数量 (C语言代码)浏览:726 |
C二级辅导-等差数列 (C语言代码)浏览:806 |
C语言程序设计教程(第三版)课后习题7.5 (C语言代码)浏览:712 |
C语言程序设计教程(第三版)课后习题8.6 (C语言代码)浏览:854 |
C语言程序设计教程(第三版)课后习题7.4 (C语言代码)浏览:522 |