結果

問題 No.1283 Extra Fee
ユーザー mkawa2mkawa2
提出日時 2020-11-07 11:44:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,371 ms / 2,000 ms
コード長 863 bytes
コンパイル時間 228 ms
コンパイル使用メモリ 82,368 KB
実行使用メモリ 120,392 KB
最終ジャッジ日時 2024-11-16 07:04:35
合計ジャッジ時間 18,128 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,744 KB
testcase_01 AC 40 ms
53,508 KB
testcase_02 AC 38 ms
53,284 KB
testcase_03 AC 37 ms
53,008 KB
testcase_04 AC 36 ms
53,232 KB
testcase_05 AC 37 ms
53,372 KB
testcase_06 AC 41 ms
54,716 KB
testcase_07 AC 38 ms
53,152 KB
testcase_08 AC 40 ms
53,648 KB
testcase_09 AC 39 ms
54,100 KB
testcase_10 AC 38 ms
53,496 KB
testcase_11 AC 159 ms
79,228 KB
testcase_12 AC 205 ms
79,612 KB
testcase_13 AC 145 ms
78,592 KB
testcase_14 AC 280 ms
82,108 KB
testcase_15 AC 371 ms
84,552 KB
testcase_16 AC 172 ms
78,372 KB
testcase_17 AC 1,224 ms
117,724 KB
testcase_18 AC 1,173 ms
106,964 KB
testcase_19 AC 1,166 ms
107,264 KB
testcase_20 AC 1,112 ms
104,148 KB
testcase_21 AC 1,053 ms
105,144 KB
testcase_22 AC 990 ms
101,904 KB
testcase_23 AC 959 ms
102,764 KB
testcase_24 AC 972 ms
102,912 KB
testcase_25 AC 1,185 ms
107,676 KB
testcase_26 AC 1,175 ms
108,012 KB
testcase_27 AC 1,201 ms
107,372 KB
testcase_28 AC 1,179 ms
107,800 KB
testcase_29 AC 1,371 ms
120,392 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

input = sys.stdin.buffer.readline

def MI(): return map(int, input().split())
dij = [(1, 0), (0, 1), (-1, 0), (0, -1)]

from heapq import *

inf = 10**16
n, m = MI()
cc = [[0]*n for _ in range(n)]
for _ in range(m):
    i, j, c = MI()
    cc[i-1][j-1] = c

hp = []
dd = [[[inf]*2 for _ in range(n)] for _ in range(n)]
dd[0][0][0] = 0
heappush(hp, (0, 0, 0, 0))
while hp:
    d, i, j, k = heappop(hp)
    if (i,j)==(n-1,n-1):
        print(d)
        exit()
    if d > dd[i][j][k]: continue
    for di, dj in dij:
        ni, nj = i+di, j+dj
        if ni < 0 or ni >= n or nj < 0 or nj >= n: continue
        nd = d+cc[ni][nj]+1
        if nd < dd[ni][nj][k]:
            dd[ni][nj][k] = nd
            heappush(hp, (nd, ni, nj, k))
        if k == 0 and d+1 < dd[ni][nj][1]:
            dd[ni][nj][1] = d+1
            heappush(hp, (d+1, ni, nj, 1))
0