結果

問題 No.1283 Extra Fee
ユーザー vwxyzvwxyz
提出日時 2023-12-16 07:34:25
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,728 ms / 2,000 ms
コード長 1,138 bytes
コンパイル時間 495 ms
コンパイル使用メモリ 82,504 KB
実行使用メモリ 103,200 KB
最終ジャッジ日時 2024-09-27 07:29:50
合計ジャッジ時間 18,885 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,480 KB
testcase_01 AC 40 ms
52,736 KB
testcase_02 AC 40 ms
53,152 KB
testcase_03 AC 38 ms
52,224 KB
testcase_04 AC 40 ms
52,864 KB
testcase_05 AC 39 ms
52,224 KB
testcase_06 AC 42 ms
53,504 KB
testcase_07 AC 38 ms
52,736 KB
testcase_08 AC 42 ms
53,632 KB
testcase_09 AC 41 ms
53,504 KB
testcase_10 AC 41 ms
53,376 KB
testcase_11 AC 211 ms
78,020 KB
testcase_12 AC 225 ms
78,136 KB
testcase_13 AC 153 ms
77,440 KB
testcase_14 AC 297 ms
79,212 KB
testcase_15 AC 420 ms
80,704 KB
testcase_16 AC 184 ms
77,472 KB
testcase_17 AC 1,620 ms
101,868 KB
testcase_18 AC 1,085 ms
90,248 KB
testcase_19 AC 1,106 ms
89,444 KB
testcase_20 AC 1,052 ms
88,960 KB
testcase_21 AC 1,069 ms
89,656 KB
testcase_22 AC 938 ms
87,132 KB
testcase_23 AC 960 ms
85,376 KB
testcase_24 AC 957 ms
85,044 KB
testcase_25 AC 1,120 ms
90,028 KB
testcase_26 AC 1,109 ms
90,160 KB
testcase_27 AC 1,119 ms
90,004 KB
testcase_28 AC 1,131 ms
89,808 KB
testcase_29 AC 1,728 ms
103,200 KB
権限があれば一括ダウンロードができます

ソースコード

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
dist0=[[inf]*N for h in range(N)]
dist1=[[inf]*N for h in range(N)]
dist0[0][0]=0
queue=[(0,0,0,0)]
while queue:
    dx,bx,hx,wx=heapq.heappop(queue)
    if bx==0:
        if dist0[hx][wx]<dx:
            continue
    else:
        if dist1[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 bx==0:
                if dist0[hy][wy]>dx+C[hy][wy]+1:
                    dist0[hy][wy]=dx+C[hy][wy]+1
                    heapq.heappush(queue,(dist0[hy][wy],bx,hy,wy))
                if dist1[hy][wy]>dx+1:
                    dist1[hy][wy]=dx+1
                    heapq.heappush(queue,(dist1[hy][wy],1,hy,wy))
            else:
                if dist1[hy][wy]>dx+C[hy][wy]+1:
                    dist1[hy][wy]=dx+C[hy][wy]+1
                    heapq.heappush(queue,(dist1[hy][wy],bx,hy,wy))
ans=dist1[N-1][N-1]
print(ans)
0