結果

問題 No.1283 Extra Fee
ユーザー vwxyz
提出日時 2023-12-16 07:32:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,531 ms / 2,000 ms
コード長 868 bytes
コンパイル時間 510 ms
コンパイル使用メモリ 82,452 KB
実行使用メモリ 102,504 KB
最終ジャッジ日時 2024-09-27 07:29:30
合計ジャッジ時間 16,442 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 30
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
readline=sys.stdin.readline
import heapq

N,M=map(int,readline().split())
C=[[0]*N for h in range(N)]
for m in range(M):
    h,w,c=map(int,readline().split())
    h-=1;w-=1
    C[h][w]=c
inf=1<<60
dist=[[[inf]*N for h in range(N)] for b in range(2)]
dist[0][0][0]=0
queue=[(0,0,0,0)]
while queue:
    dx,bx,hx,wx=heapq.heappop(queue)
    if dist[bx][hx][wx]<dx:
        continue
    for dh,dw in ((0,1),(1,0),(0,-1),(-1,0)):
        hy=hx+dh
        wy=wx+dw
        if 0<=hy<N and 0<=wy<N:
            if dist[bx][hy][wy]>dx+C[hy][wy]+1:
                dist[bx][hy][wy]=dx+C[hy][wy]+1
                heapq.heappush(queue,(dist[bx][hy][wy],bx,hy,wy))
            if bx==0:
                if dist[1][hy][wy]>dx+1:
                    dist[1][hy][wy]=dx+1
                    heapq.heappush(queue,(dist[1][hy][wy],1,hy,wy))
ans=dist[1][N-1][N-1]
print(ans)
0