結果

問題 No.2064 Smallest Sequence on Grid
ユーザー KazunKazun
提出日時 2022-09-02 22:01:55
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 598 bytes
コンパイル時間 450 ms
コンパイル使用メモリ 81,980 KB
実行使用メモリ 493,840 KB
最終ジャッジ日時 2024-11-16 03:29:31
合計ジャッジ時間 34,358 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
59,164 KB
testcase_01 AC 38 ms
493,840 KB
testcase_02 AC 39 ms
61,200 KB
testcase_03 AC 38 ms
52,340 KB
testcase_04 AC 38 ms
52,876 KB
testcase_05 AC 38 ms
52,296 KB
testcase_06 AC 38 ms
52,628 KB
testcase_07 AC 39 ms
52,560 KB
testcase_08 AC 39 ms
52,772 KB
testcase_09 AC 38 ms
52,724 KB
testcase_10 AC 39 ms
52,896 KB
testcase_11 AC 41 ms
53,312 KB
testcase_12 AC 41 ms
53,192 KB
testcase_13 AC 50 ms
62,336 KB
testcase_14 AC 53 ms
64,628 KB
testcase_15 AC 51 ms
63,576 KB
testcase_16 AC 52 ms
64,380 KB
testcase_17 AC 769 ms
425,508 KB
testcase_18 AC 758 ms
425,368 KB
testcase_19 AC 756 ms
426,056 KB
testcase_20 TLE -
testcase_21 TLE -
testcase_22 AC 2,153 ms
439,272 KB
testcase_23 AC 2,402 ms
439,448 KB
testcase_24 AC 2,408 ms
439,652 KB
testcase_25 AC 2,409 ms
439,908 KB
testcase_26 TLE -
testcase_27 TLE -
testcase_28 AC 762 ms
425,644 KB
testcase_29 TLE -
testcase_30 AC 754 ms
408,036 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def solve():
    H,W=map(int,input().split())
    S=[]
    for _ in range(H):
        S.append(list(input()))

    T=[S[0][0]]
    Y={(0,0)}

    for _ in range(H+W-2):
        X=Y
        Y=set()

        c=chr(ord("z")+1)
        for i,j in X:
            if i+1<H and S[i+1][j]<c:
                c=S[i+1][j]
            if j+1<W and S[i][j+1]<c:
                c=S[i][j+1]
        for i,j in X:
            if i+1<H and S[i+1][j]==c:
                Y.add((i+1,j))
            if j+1<W and S[i][j+1]==c:
                Y.add((i,j+1))
        T.append(c)
    return "".join(T)

print(solve())
0