結果

問題 No.2064 Smallest Sequence on Grid
ユーザー lloyzlloyz
提出日時 2022-09-02 22:28:34
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 441 bytes
コンパイル時間 433 ms
コンパイル使用メモリ 82,232 KB
実行使用メモリ 693,892 KB
最終ジャッジ日時 2024-11-16 04:28:33
合計ジャッジ時間 80,537 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
59,784 KB
testcase_01 AC 40 ms
331,288 KB
testcase_02 AC 41 ms
61,040 KB
testcase_03 AC 39 ms
335,108 KB
testcase_04 AC 43 ms
59,096 KB
testcase_05 AC 41 ms
332,436 KB
testcase_06 AC 42 ms
60,716 KB
testcase_07 AC 46 ms
371,108 KB
testcase_08 AC 44 ms
59,832 KB
testcase_09 AC 42 ms
370,540 KB
testcase_10 AC 54 ms
69,864 KB
testcase_11 TLE -
testcase_12 TLE -
testcase_13 MLE -
testcase_14 TLE -
testcase_15 MLE -
testcase_16 TLE -
testcase_17 MLE -
testcase_18 TLE -
testcase_19 MLE -
testcase_20 TLE -
testcase_21 MLE -
testcase_22 MLE -
testcase_23 MLE -
testcase_24 MLE -
testcase_25 MLE -
testcase_26 MLE -
testcase_27 MLE -
testcase_28 AC 1,034 ms
447,344 KB
testcase_29 MLE -
testcase_30 MLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import heapify, heappop, heappush

h, w = map(int, input().split())
S = [list(input()) for _ in range(h)]
Directions = [(1, 0), (0, 1)]

H = [(S[0][0], 0, 0)]
heapify(H)
while H:
    res, ci, cj = heappop(H)
    if ci == h - 1 and cj == w - 1:
        print(res)
        break
    for di, dj in Directions:
        ni = ci + di
        nj = cj + dj
        if ni < h and nj < w:
            heappush(H, (res + S[ni][nj], ni, nj))
0