結果

問題 No.1283 Extra Fee
ユーザー KazunKazun
提出日時 2020-11-06 23:00:52
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,590 ms / 2,000 ms
コード長 918 bytes
コンパイル時間 223 ms
コンパイル使用メモリ 82,040 KB
実行使用メモリ 158,968 KB
最終ジャッジ日時 2024-11-16 06:51:45
合計ジャッジ時間 19,153 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
52,988 KB
testcase_01 AC 43 ms
53,172 KB
testcase_02 AC 37 ms
54,816 KB
testcase_03 AC 38 ms
53,504 KB
testcase_04 AC 38 ms
54,016 KB
testcase_05 AC 36 ms
52,692 KB
testcase_06 AC 40 ms
54,924 KB
testcase_07 AC 39 ms
53,564 KB
testcase_08 AC 40 ms
53,864 KB
testcase_09 AC 39 ms
53,568 KB
testcase_10 AC 39 ms
53,404 KB
testcase_11 AC 224 ms
81,612 KB
testcase_12 AC 209 ms
83,540 KB
testcase_13 AC 161 ms
80,176 KB
testcase_14 AC 282 ms
88,544 KB
testcase_15 AC 369 ms
96,112 KB
testcase_16 AC 179 ms
80,896 KB
testcase_17 AC 1,481 ms
152,636 KB
testcase_18 AC 1,141 ms
150,076 KB
testcase_19 AC 1,170 ms
151,976 KB
testcase_20 AC 1,046 ms
145,780 KB
testcase_21 AC 1,000 ms
147,516 KB
testcase_22 AC 944 ms
139,876 KB
testcase_23 AC 1,340 ms
139,760 KB
testcase_24 AC 1,399 ms
147,672 KB
testcase_25 AC 1,172 ms
153,856 KB
testcase_26 AC 1,116 ms
153,380 KB
testcase_27 AC 1,212 ms
154,800 KB
testcase_28 AC 1,096 ms
153,352 KB
testcase_29 AC 1,590 ms
158,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys,heapq
input=sys.stdin.readline

N,M=map(int,input().split())
inf=float("inf")

F=[[1]*(N+1) for _ in range(N+1)]
for _ in range(M):
    h,w,c=map(int,input().split())
    F[h][w]+=c

V=[(1,0),(-1,0),(0,1),(0,-1)]

Dist=[[[inf,inf] for _ in range(N+1)] for __ in range(N+1)]
Dist[1][1][0]=0

Flag=[[[False,False] for _ in range(N+1)] for __ in range(N+1)]

Q=[(0,(1,1,0))]
heapq.heapify(Q)

while Q:
    d,v=heapq.heappop(Q)

    i,j,m=v
    if Flag[i][j][m]:
        continue

    Flag[i][j][m]=True

    if i==j==N:
        break

    for (a,b) in V:
        if 1<=i+a<=N and 1<=j+b<=N:
            if d+F[i+a][j+b]<Dist[i+a][j+b][m]:
                Dist[i+a][j+b][m]=d+F[i+a][j+b]
                heapq.heappush(Q,(d+F[i+a][j+b],(i+a,j+b,m)))

            if m==0 and d+1<Dist[i+a][j+b][1]:
                Dist[i+a][j+b][1]=d+1
                heapq.heappush(Q,(d+1,(i+a,j+b,1)))

print(min(Dist[N][N]))
0