結果

問題 No.2064 Smallest Sequence on Grid
ユーザー lloyzlloyz
提出日時 2022-09-02 22:17:59
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 659 bytes
コンパイル時間 198 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 1,642,792 KB
最終ジャッジ日時 2024-11-16 04:06:26
合計ジャッジ時間 62,702 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 MLE -
testcase_01 AC 38 ms
61,188 KB
testcase_02 MLE -
testcase_03 AC 39 ms
60,916 KB
testcase_04 AC 38 ms
52,156 KB
testcase_05 AC 38 ms
52,096 KB
testcase_06 AC 39 ms
52,096 KB
testcase_07 AC 38 ms
52,096 KB
testcase_08 AC 39 ms
52,352 KB
testcase_09 AC 38 ms
52,224 KB
testcase_10 AC 40 ms
52,608 KB
testcase_11 TLE -
testcase_12 TLE -
testcase_13 MLE -
testcase_14 MLE -
testcase_15 MLE -
testcase_16 MLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 MLE -
testcase_21 MLE -
testcase_22 MLE -
testcase_23 MLE -
testcase_24 MLE -
testcase_25 MLE -
testcase_26 MLE -
testcase_27 MLE -
testcase_28 AC 768 ms
432,184 KB
testcase_29 MLE -
testcase_30 MLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

ans = S[0][0]
C = [(0, 0)]
for _ in range(h + w - 2):
    minT = ''
    NC = []
    for ci, cj in C:
        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, nj))
                elif S[ni][nj] == minT:
                    NC.append((ni, nj))
                elif S[ni][nj] < minT:
                    minT = S[ni][nj]
                    NC = [(ni, nj)]
    ans += minT
    C = NC
print(ans)
0