-
알고리즘: 백준 2665번 미로만들기 (feat.python)알고리즘/백준(BaekJoon) 2021. 1. 13. 13:13
2665번: 미로만들기
첫 줄에는 한 줄에 들어가는 방의 수 n(1≤n≤50)이 주어지고, 다음 n개의 줄의 각 줄마다 0과 1이 이루어진 길이가 n인 수열이 주어진다. 0은 검은 방, 1은 흰 방을 나타낸다.
www.acmicpc.net
import sys import copy import heapq read = sys.stdin.readline n = int(read()) maze = [] for i in range(n): maze.append(list(map(int, read().strip()))) visit = copy.deepcopy(maze) def bfs(): hq = [] heapq.heappush(hq, [0,0,0]) dx = [1, -1, 0, 0] dy = [0, 0, 1, -1] while hq: cnt, cx, cy = heapq.heappop(hq) if cy == n-1 and cx == n-1: return cnt if visit[cy][cx] == -1: continue visit[cy][cx] = -1 for i in range(4): nx = cx + dx[i] ny = cy + dy[i] if 0 <= nx < n and 0 <= ny < n and visit[ny][nx] != -1: if maze[ny][nx] == 1: heapq.heappush(hq, [cnt, nx, ny]) elif maze[ny][nx] == 0: heapq.heappush(hq, [cnt+1, nx, ny]) print(bfs())
반응형'알고리즘 > 백준(BaekJoon)' 카테고리의 다른 글
알고리즘: 백준 10282번 해킹 (feat. python) (0) 2021.01.15 알고리즘: 백준 11779번 최소비용 구하기2 (feat.python) (0) 2021.01.15 알고리즘: 백준 4485번 녹색 옷 입은 애가 젤다지? (feat. python) (0) 2021.01.12 알고리즘: 백준 13549번 숨바꼭질 (feat. python) (0) 2021.01.12 알고리즘: 백준 1504번 특정한 최단 경로 (feat. python) (0) 2021.01.12