ナビゲーション迷路(DFS)
6245 ワード
作成日:2022年2月15日午後4:26
インプリメンテーションコード
# 미로탐색(DFS)
import sys
sys.stdin = open("input.txt", "rt")
def DFS(x, y):
global cnt
if x == 6 and y == 6:
cnt += 1
else:
for i in range(4):
nextX = x + dx[i]
nextY = y + dy[i]
if 0<=nextX<=6 and 0<=nextY<=6 and maze[nextX][nextY] == 0:
maze[nextX][nextY] = 1
DFS(nextX, nextY)
maze[nextX][nextY] = 0
if __name__ == "__main__":
maze = []
for _ in range(7):
maze.append(list(map(int, input().split())))
maze[0][0] = 1
# 상하좌우 좌표
dx = [-1, 0, 1, 0]
dy = [0, 1, 0, -1]
cnt = 0
DFS(0,0)
print(cnt)
Reference
この問題について(ナビゲーション迷路(DFS)), 我々は、より多くの情報をここで見つけました https://velog.io/@lsj8706/미로탐색-DFSテキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol