题解 | #迷宫问题#

迷宫问题

http://www.nowcoder.com/practice/cf24906056f4488c9ddb132f317e03bc

import sys
#使用深度优先搜索算法,可以搜索出所有路径.
#向4个方向查找能否通行
#L是迷宫, stepL是路径
def dfs(L, x, y, stepL):
    #定义4个方向,右,下,左,上
    nexts = [[0,1], [1,0], [0,-1], [-1, 0]]
#     print(stepL)
    #到终点了
    if x == len(L) - 1 and y == len(L[0]) - 1:
#         print(stepL)
        for s in stepL:
            print("({},{})".format(s[0], s[1]))
        return
    #遍历4种走法
    for i in range(len(nexts)):
        tx = x + nexts[i][0]
        ty = y + nexts[i][1]
        if tx < 0 or tx >= len(L):
            continue
        if ty < 0 or ty >= len(L[0]):
            continue   
        #判断该点是否为障碍物或者已经在路径中
        if L[tx][ty] == 0 and [tx, ty] not in stepL:
            stepL.append([tx, ty])#添加到路径中,标记已经走过
            dfs(L, tx, ty, stepL)#下一步
            stepL.remove([tx, ty])#尝试结束,取消这个点的标记
    return 



while True:
    try:
        N,M = list(map(int, input().split()))
        L = []
        for n in range(N):
            L.append(list(map(int, input().split())))
#         print(L)
        stepL = [[0,0]]
        dfs(L, 0, 0, stepL)
    except:
#         print(sys.exc_info())
        break

















全部评论

相关推荐

一个菜鸡罢了:哥们,感觉你的简历还是有点问题的,我提几点建议,看看能不能提供一点帮助 1. ”新余学院“别加粗,课程不清楚是否有必要写,感觉版面不如拿来写一下做过的事情,教育经历是你的弱势就尽量少写 2. “干部及社团经历”和“自我评价”删掉 3. 论文后面的“录用”和“小修”啥的都删掉,默认全录用,问了再说,反正小修毕业前肯定能发出来 4. 工作经验和研究成果没有体现你的个人贡献,着重包装一下个人贡献
点赞 评论 收藏
分享
1 收藏 评论
分享
牛客网
牛客企业服务