結果

問題 No.2328 Build Walls
ユーザー とりゐとりゐ
提出日時 2023-05-28 14:11:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,251 ms / 3,000 ms
コード長 1,086 bytes
コンパイル時間 412 ms
コンパイル使用メモリ 81,872 KB
実行使用メモリ 95,920 KB
最終ジャッジ日時 2024-06-08 04:51:46
合計ジャッジ時間 13,869 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,736 KB
testcase_01 AC 38 ms
52,864 KB
testcase_02 AC 39 ms
52,864 KB
testcase_03 AC 39 ms
52,864 KB
testcase_04 AC 43 ms
53,120 KB
testcase_05 AC 41 ms
53,120 KB
testcase_06 AC 44 ms
52,736 KB
testcase_07 AC 38 ms
52,736 KB
testcase_08 AC 38 ms
53,504 KB
testcase_09 AC 38 ms
52,992 KB
testcase_10 AC 38 ms
52,736 KB
testcase_11 AC 39 ms
52,864 KB
testcase_12 AC 37 ms
52,992 KB
testcase_13 AC 147 ms
85,208 KB
testcase_14 AC 420 ms
82,280 KB
testcase_15 AC 303 ms
81,664 KB
testcase_16 AC 129 ms
78,208 KB
testcase_17 AC 288 ms
82,268 KB
testcase_18 AC 107 ms
76,800 KB
testcase_19 AC 55 ms
67,840 KB
testcase_20 AC 117 ms
77,032 KB
testcase_21 AC 89 ms
82,080 KB
testcase_22 AC 592 ms
85,632 KB
testcase_23 AC 962 ms
95,056 KB
testcase_24 AC 878 ms
93,960 KB
testcase_25 AC 966 ms
94,776 KB
testcase_26 AC 672 ms
93,508 KB
testcase_27 AC 835 ms
94,236 KB
testcase_28 AC 112 ms
80,256 KB
testcase_29 AC 1,028 ms
95,300 KB
testcase_30 AC 186 ms
92,892 KB
testcase_31 AC 163 ms
92,892 KB
testcase_32 AC 843 ms
94,056 KB
testcase_33 AC 1,251 ms
95,920 KB
testcase_34 AC 190 ms
92,716 KB
testcase_35 AC 1,183 ms
94,736 KB
testcase_36 AC 40 ms
52,864 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

h,w=map(int,input().split())
h-=2
a=[list(map(int,input().split())) for i in range(h)]
from heapq import heappush,heappop

INF=10**18
def dijkstra(start,n):
  dist=[INF]*n
  hq=[(0,start)]
  dist[start]=0
  seen=[False]*n
  while hq:
    w,v=heappop(hq)
    if dist[v]<w:
      continue
    seen[v]=True
    for to,cost in edge[v]:
      if seen[to]==False and dist[v]+cost<dist[to]:
        dist[to]=dist[v]+cost
        heappush(hq,(dist[to],to))
  return dist

inf=1<<60
dist=[[inf]*w for i in range(h)]
seen=[[False]*w for i in range(h)]
hq=[]
for i in range(h):
  if a[i][0]!=-1:
    heappush(hq,(a[i][0],i,0))
    dist[i][0]=a[i][0]

while hq:
  _,x,y=heappop(hq)
  if seen[x][y]:
    continue
  seen[x][y]=True
  for dx in range(-1,2):
    for dy in range(-1,2):
      nx,ny=x+dx,y+dy
      if 0<=nx<h and 0<=ny<w:
        if seen[nx][ny]==False and a[nx][ny]!=-1 and dist[x][y]+a[nx][ny]<dist[nx][ny]:
          dist[nx][ny]=dist[x][y]+a[nx][ny]
          heappush(hq,(dist[nx][ny],nx,ny))

ans=inf
for i in range(h):
  ans=min(ans,dist[i][w-1])
if ans==inf:
  ans=-1
print(ans)
0