結果

問題 No.1283 Extra Fee
ユーザー c-yanc-yan
提出日時 2020-11-06 23:13:42
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,146 bytes
コンパイル時間 311 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 176,648 KB
最終ジャッジ日時 2024-07-22 13:36:48
合計ジャッジ時間 19,868 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
53,888 KB
testcase_01 AC 42 ms
53,888 KB
testcase_02 AC 42 ms
54,272 KB
testcase_03 AC 40 ms
53,632 KB
testcase_04 AC 43 ms
53,888 KB
testcase_05 AC 41 ms
53,888 KB
testcase_06 WA -
testcase_07 AC 41 ms
54,272 KB
testcase_08 AC 41 ms
54,784 KB
testcase_09 WA -
testcase_10 AC 42 ms
54,400 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 490 ms
91,272 KB
testcase_16 AC 227 ms
80,140 KB
testcase_17 AC 1,063 ms
111,608 KB
testcase_18 AC 1,704 ms
176,648 KB
testcase_19 AC 1,319 ms
142,784 KB
testcase_20 AC 1,293 ms
141,796 KB
testcase_21 AC 1,282 ms
136,792 KB
testcase_22 AC 1,171 ms
133,032 KB
testcase_23 AC 260 ms
83,968 KB
testcase_24 AC 288 ms
88,960 KB
testcase_25 AC 1,251 ms
137,876 KB
testcase_26 AC 1,373 ms
149,228 KB
testcase_27 AC 1,284 ms
141,276 KB
testcase_28 AC 1,445 ms
149,884 KB
testcase_29 AC 1,083 ms
115,684 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque

INF = float('inf')

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