[백준 2665] 미로 만들기
1. 문제 설명
2. 문제 분석
다익스트라 알고리즘.
3. 나의 풀이
import sys
import heapq
n = int(sys.stdin.readline().rstrip())
nodes = []
for _ in range(n): nodes.append(list(sys.stdin.readline().rstrip()))
INF = sys.maxsize
dx = [1, -1, 0, 0]
dy = [0, 0, 1, -1]
def Dijkstra():
distances = [[INF for _ in range(n)] for _ in range(n)]
distances[0][0] = 0
pq = []
heapq.heappush(pq, [0, 0, 0])
while pq:
cur_cost, cur_row, cur_col = heapq.heappop(pq)
if distances[cur_row][cur_col] < cur_cost: continue
for x, y in zip(dx, dy):
next_row, next_col = cur_row + y, cur_col + x
if next_row < 0 or next_col < 0 or next_row >= n or next_col >= n: continue
next_cost = cur_cost + abs(int(nodes[next_row][next_col])-1)
if distances[next_row][next_col] > next_cost:
distances[next_row][next_col] = next_cost
heapq.heappush(pq, [next_cost, next_row, next_col])
print(distances[n-1][n-1])
Dijkstra()
Author And Source
이 문제에 관하여([백준 2665] 미로 만들기), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://velog.io/@j_aion/백준-2665-미로-만들기
저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
다익스트라 알고리즘.
3. 나의 풀이
import sys
import heapq
n = int(sys.stdin.readline().rstrip())
nodes = []
for _ in range(n): nodes.append(list(sys.stdin.readline().rstrip()))
INF = sys.maxsize
dx = [1, -1, 0, 0]
dy = [0, 0, 1, -1]
def Dijkstra():
distances = [[INF for _ in range(n)] for _ in range(n)]
distances[0][0] = 0
pq = []
heapq.heappush(pq, [0, 0, 0])
while pq:
cur_cost, cur_row, cur_col = heapq.heappop(pq)
if distances[cur_row][cur_col] < cur_cost: continue
for x, y in zip(dx, dy):
next_row, next_col = cur_row + y, cur_col + x
if next_row < 0 or next_col < 0 or next_row >= n or next_col >= n: continue
next_cost = cur_cost + abs(int(nodes[next_row][next_col])-1)
if distances[next_row][next_col] > next_cost:
distances[next_row][next_col] = next_cost
heapq.heappush(pq, [next_cost, next_row, next_col])
print(distances[n-1][n-1])
Dijkstra()
Author And Source
이 문제에 관하여([백준 2665] 미로 만들기), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://velog.io/@j_aion/백준-2665-미로-만들기
저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
import sys
import heapq
n = int(sys.stdin.readline().rstrip())
nodes = []
for _ in range(n): nodes.append(list(sys.stdin.readline().rstrip()))
INF = sys.maxsize
dx = [1, -1, 0, 0]
dy = [0, 0, 1, -1]
def Dijkstra():
distances = [[INF for _ in range(n)] for _ in range(n)]
distances[0][0] = 0
pq = []
heapq.heappush(pq, [0, 0, 0])
while pq:
cur_cost, cur_row, cur_col = heapq.heappop(pq)
if distances[cur_row][cur_col] < cur_cost: continue
for x, y in zip(dx, dy):
next_row, next_col = cur_row + y, cur_col + x
if next_row < 0 or next_col < 0 or next_row >= n or next_col >= n: continue
next_cost = cur_cost + abs(int(nodes[next_row][next_col])-1)
if distances[next_row][next_col] > next_cost:
distances[next_row][next_col] = next_cost
heapq.heappush(pq, [next_cost, next_row, next_col])
print(distances[n-1][n-1])
Dijkstra()
Author And Source
이 문제에 관하여([백준 2665] 미로 만들기), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@j_aion/백준-2665-미로-만들기저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)