結果

問題 No.2064 Smallest Sequence on Grid
ユーザー AkariAkari
提出日時 2022-09-02 22:36:37
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 1,027 bytes
コンパイル時間 142 ms
コンパイル使用メモリ 82,092 KB
実行使用メモリ 849,132 KB
最終ジャッジ日時 2024-11-16 04:46:34
合計ジャッジ時間 79,651 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
57,600 KB
testcase_01 AC 37 ms
473,040 KB
testcase_02 AC 37 ms
58,916 KB
testcase_03 AC 38 ms
476,456 KB
testcase_04 AC 38 ms
58,916 KB
testcase_05 MLE -
testcase_06 AC 37 ms
58,916 KB
testcase_07 MLE -
testcase_08 AC 39 ms
59,296 KB
testcase_09 AC 37 ms
454,540 KB
testcase_10 AC 38 ms
60,840 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 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 MLE -
testcase_29 TLE -
testcase_30 MLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
    h, w = map(int, input().split())
    A = []
    for _ in range(h): A += list(input())
    d = {A[0][0]: [0]}
    for _ in range(h + w - 1):
        s = min(d)
        q = [k for k in d[s]]
        d.clear()
        while q:
            k = q.pop()
            A[k] = A[k].upper()
            i, j = divmod(k, w)
            if i < h - 1:
                ni = (i + 1) * w + j
                a = A[ni]
                if a in d:
                    d[a].append(ni)
                else:
                    d[a] = [ni]
            if j < w - 1:
                nj = i * w + (j + 1)
                a = A[nj]
                if a in d:
                    d[a].append(nj)
                else:
                    d[a] = [nj]
    ans = []
    i, j = h - 1, w - 1
    for _ in range(h + w - 1):
        ans.append(A[i * w + j].lower())
        if i > 0 and A[(i - 1) * w + j].isupper():
            i -= 1
        else:
            j -= 1
    print(''.join(reversed(ans)))




if __name__ == '__main__':
    main()
0