結果

問題 No.1283 Extra Fee
ユーザー c-yanc-yan
提出日時 2020-11-06 23:16:13
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,142 bytes
コンパイル時間 314 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 167,952 KB
最終ジャッジ日時 2024-07-22 13:39:32
合計ジャッジ時間 17,419 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
53,888 KB
testcase_01 AC 43 ms
53,888 KB
testcase_02 AC 43 ms
54,528 KB
testcase_03 AC 40 ms
53,888 KB
testcase_04 AC 39 ms
54,528 KB
testcase_05 AC 41 ms
54,272 KB
testcase_06 WA -
testcase_07 AC 39 ms
54,144 KB
testcase_08 AC 41 ms
55,168 KB
testcase_09 WA -
testcase_10 AC 39 ms
54,328 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 425 ms
90,624 KB
testcase_16 AC 207 ms
80,252 KB
testcase_17 AC 867 ms
109,764 KB
testcase_18 AC 1,486 ms
167,952 KB
testcase_19 AC 1,195 ms
138,948 KB
testcase_20 AC 1,110 ms
138,028 KB
testcase_21 AC 1,100 ms
133,612 KB
testcase_22 AC 1,039 ms
130,956 KB
testcase_23 AC 255 ms
84,128 KB
testcase_24 AC 284 ms
89,216 KB
testcase_25 AC 1,149 ms
132,916 KB
testcase_26 AC 1,246 ms
145,988 KB
testcase_27 AC 1,079 ms
138,200 KB
testcase_28 AC 1,282 ms
146,280 KB
testcase_29 AC 901 ms
110,172 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque

INF = 10 ** 18

N, M = map(int, input().split())

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

dp = [[(INF, 0)] * N for _ in range(N)]
dp[0][0] = (0, 0)
q = deque([(0, 0)])
while q:
    h, w = q.popleft()
    t, m = dp[h][w]
    if h != 0:
        a, b = dp[h - 1][w]
        d = t + 1 + c[h - 1][w]
        e = max(m, c[h - 1][w])
        if d < a:
            dp[h - 1][w] = (d, e)
            q.append((h - 1, w))
    if h != N - 1:
        a, b = dp[h + 1][w]
        d = t + 1 + c[h + 1][w]
        e = max(m, c[h + 1][w])
        if d < a:
            dp[h + 1][w] = (d, e)
            q.append((h + 1, w))
    if w != 0:
        a, b = dp[h][w - 1]
        d = t + 1 + c[h][w - 1]
        e = max(m, c[h][w - 1])
        if d < a:
            dp[h][w - 1] = (d, e)
            q.append((h, w - 1))
    if w != N - 1:
        a, b = dp[h][w + 1]
        d = t + 1 + c[h][w + 1]
        e = max(m, c[h][w + 1])
        if d < a:
            dp[h][w + 1] = (d, e)
            q.append((h, w + 1))
t, m = dp[N - 1][N - 1]
print(t - m)
0