結果

問題 No.2064 Smallest Sequence on Grid
ユーザー AkariAkari
提出日時 2022-09-02 22:16:41
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 962 bytes
コンパイル時間 362 ms
コンパイル使用メモリ 82,312 KB
実行使用メモリ 904,416 KB
最終ジャッジ日時 2024-11-16 04:01:33
合計ジャッジ時間 71,179 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 MLE -
testcase_01 MLE -
testcase_02 AC 34 ms
59,168 KB
testcase_03 AC 34 ms
59,564 KB
testcase_04 AC 34 ms
60,448 KB
testcase_05 AC 35 ms
384,136 KB
testcase_06 AC 33 ms
58,788 KB
testcase_07 AC 34 ms
351,336 KB
testcase_08 AC 37 ms
59,428 KB
testcase_09 AC 35 ms
54,268 KB
testcase_10 AC 36 ms
54,540 KB
testcase_11 TLE -
testcase_12 MLE -
testcase_13 MLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
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 AC 194 ms
155,976 KB
testcase_29 TLE -
testcase_30 MLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

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




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