結果

問題 No.2064 Smallest Sequence on Grid
ユーザー lloyzlloyz
提出日時 2022-09-02 22:45:54
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 725 bytes
コンパイル時間 1,046 ms
コンパイル使用メモリ 82,320 KB
実行使用メモリ 856,184 KB
最終ジャッジ日時 2024-11-16 05:08:31
合計ジャッジ時間 72,892 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
58,624 KB
testcase_01 MLE -
testcase_02 AC 45 ms
59,812 KB
testcase_03 AC 44 ms
405,332 KB
testcase_04 AC 44 ms
60,576 KB
testcase_05 MLE -
testcase_06 AC 45 ms
60,704 KB
testcase_07 MLE -
testcase_08 AC 47 ms
61,092 KB
testcase_09 MLE -
testcase_10 AC 49 ms
61,988 KB
testcase_11 MLE -
testcase_12 TLE -
testcase_13 MLE -
testcase_14 TLE -
testcase_15 MLE -
testcase_16 TLE -
testcase_17 MLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 MLE -
testcase_27 TLE -
testcase_28 AC 817 ms
433,532 KB
testcase_29 TLE -
testcase_30 MLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

from copy import deepcopy

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

ans = S[0][0]
C = [0]
for _ in range(h + w - 2):
    minT = ''
    NC = []
    for c in C:
        ci, cj = divmod(c, w)
        for di, dj in Directions:
            ni = ci + di
            nj = cj + dj
            if ni < h and nj < w:
                if minT == '':
                    minT = S[ni][nj]
                    NC.append(ni * w + nj)
                elif S[ni][nj] == minT:
                    NC.append(ni * w + nj)
                elif S[ni][nj] < minT:
                    minT = S[ni][nj]
                    NC = [ni * w + nj]
    ans += minT
    C = deepcopy(NC)
print(ans)
0