https://www.acmicpc.net/problem/22116 22116번: 창영이와 퇴근 A1,1에서 AN,N까지, 경로상의 최대 경사의 최솟값을 출력한다. www.acmicpc.net 소스코드 import sys import heapq as hq input = sys.stdin.readline nx = [-1,0,1,0] ny = [0,1,0,-1] def dijkstra(): q = [] hq.heappush(q,[0,0,0]) min_dis[0][0] = 0 while q: h,x,y = hq.heappop(q) if min_dis[x][y] < h: continue for i in range(4): xx = x + nx[i] yy = y + ny[i] if (0