結果

問題 No.2064 Smallest Sequence on Grid
ユーザー KazunKazun
提出日時 2022-09-02 22:00:48
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 604 bytes
コンパイル時間 187 ms
コンパイル使用メモリ 81,808 KB
実行使用メモリ 843,200 KB
最終ジャッジ日時 2024-11-16 03:27:28
合計ジャッジ時間 31,183 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,788 KB
testcase_01 AC 35 ms
53,656 KB
testcase_02 AC 34 ms
52,724 KB
testcase_03 AC 35 ms
52,104 KB
testcase_04 AC 34 ms
52,760 KB
testcase_05 AC 34 ms
52,608 KB
testcase_06 AC 35 ms
52,304 KB
testcase_07 AC 34 ms
52,876 KB
testcase_08 AC 36 ms
53,100 KB
testcase_09 AC 35 ms
52,416 KB
testcase_10 AC 36 ms
54,028 KB
testcase_11 AC 35 ms
53,340 KB
testcase_12 AC 36 ms
53,284 KB
testcase_13 AC 44 ms
62,292 KB
testcase_14 AC 45 ms
62,640 KB
testcase_15 AC 43 ms
62,596 KB
testcase_16 AC 46 ms
62,936 KB
testcase_17 AC 705 ms
432,428 KB
testcase_18 AC 686 ms
432,852 KB
testcase_19 AC 691 ms
432,400 KB
testcase_20 AC 2,760 ms
440,888 KB
testcase_21 AC 2,925 ms
441,436 KB
testcase_22 AC 1,933 ms
438,752 KB
testcase_23 AC 2,154 ms
439,440 KB
testcase_24 AC 2,214 ms
438,720 KB
testcase_25 AC 2,270 ms
438,840 KB
testcase_26 TLE -
testcase_27 TLE -
testcase_28 AC 707 ms
432,596 KB
testcase_29 AC 2,997 ms
387,956 KB
testcase_30 MLE -
権限があれば一括ダウンロードができます

ソースコード

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=list(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