結果

問題 No.2064 Smallest Sequence on Grid
ユーザー KazunKazun
提出日時 2022-09-02 22:25:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,018 ms / 3,000 ms
コード長 618 bytes
コンパイル時間 556 ms
コンパイル使用メモリ 82,320 KB
実行使用メモリ 171,484 KB
最終ジャッジ日時 2024-11-16 04:21:38
合計ジャッジ時間 17,390 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,760 KB
testcase_01 AC 36 ms
52,404 KB
testcase_02 AC 37 ms
53,540 KB
testcase_03 AC 37 ms
52,944 KB
testcase_04 AC 37 ms
53,208 KB
testcase_05 AC 37 ms
51,872 KB
testcase_06 AC 36 ms
52,556 KB
testcase_07 AC 37 ms
52,068 KB
testcase_08 AC 41 ms
58,376 KB
testcase_09 AC 40 ms
58,288 KB
testcase_10 AC 41 ms
58,228 KB
testcase_11 AC 46 ms
58,764 KB
testcase_12 AC 42 ms
58,796 KB
testcase_13 AC 49 ms
62,344 KB
testcase_14 AC 51 ms
64,484 KB
testcase_15 AC 48 ms
62,616 KB
testcase_16 AC 48 ms
62,616 KB
testcase_17 AC 281 ms
156,304 KB
testcase_18 AC 265 ms
156,336 KB
testcase_19 AC 268 ms
156,500 KB
testcase_20 AC 1,458 ms
165,476 KB
testcase_21 AC 1,595 ms
166,692 KB
testcase_22 AC 1,094 ms
162,400 KB
testcase_23 AC 1,143 ms
162,904 KB
testcase_24 AC 1,138 ms
163,360 KB
testcase_25 AC 1,139 ms
163,336 KB
testcase_26 AC 2,018 ms
171,016 KB
testcase_27 AC 1,978 ms
171,484 KB
testcase_28 AC 274 ms
155,836 KB
testcase_29 AC 1,623 ms
150,124 KB
testcase_30 AC 262 ms
142,788 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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

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

        c=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(chr(c))
    return "".join(T)

print(solve())
0