結果

問題 No.2064 Smallest Sequence on Grid
ユーザー ニックネームニックネーム
提出日時 2022-09-02 21:49:32
言語 PyPy3
(7.3.15)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 510 bytes
コンパイル時間 360 ms
コンパイル使用メモリ 82,172 KB
実行使用メモリ 233,248 KB
最終ジャッジ日時 2024-11-16 03:07:18
合計ジャッジ時間 24,924 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,940 KB
testcase_01 AC 39 ms
52,352 KB
testcase_02 AC 38 ms
53,316 KB
testcase_03 AC 39 ms
52,452 KB
testcase_04 AC 39 ms
52,200 KB
testcase_05 AC 39 ms
53,720 KB
testcase_06 AC 39 ms
52,400 KB
testcase_07 AC 39 ms
52,316 KB
testcase_08 AC 40 ms
53,660 KB
testcase_09 AC 39 ms
52,684 KB
testcase_10 AC 44 ms
59,636 KB
testcase_11 AC 44 ms
58,864 KB
testcase_12 AC 43 ms
58,592 KB
testcase_13 AC 52 ms
63,232 KB
testcase_14 AC 53 ms
65,348 KB
testcase_15 AC 52 ms
64,524 KB
testcase_16 AC 53 ms
64,364 KB
testcase_17 AC 124 ms
84,712 KB
testcase_18 AC 121 ms
84,960 KB
testcase_19 AC 122 ms
85,112 KB
testcase_20 AC 2,424 ms
179,140 KB
testcase_21 AC 2,675 ms
188,820 KB
testcase_22 AC 1,733 ms
146,256 KB
testcase_23 AC 1,678 ms
159,548 KB
testcase_24 AC 1,675 ms
159,616 KB
testcase_25 AC 1,699 ms
159,712 KB
testcase_26 TLE -
testcase_27 TLE -
testcase_28 AC 127 ms
84,664 KB
testcase_29 AC 2,765 ms
228,756 KB
testcase_30 AC 133 ms
85,308 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

h, w = map(int, input().split())
s = [input() for _ in range(h)]
ans = [s[0][0]]
tij = {(0, 0, s[0][0])}
m = s[0][0]
for _ in range(h+w-2):
    tij_new = set()
    m_new = "z"
    for i, j, t in tij:
        if t == m and i < h-1:
            tij_new.add((i+1, j, s[i+1][j]))
            m_new = min(m_new, s[i+1][j])
        if t == m and j < w-1:
            tij_new.add((i, j+1, s[i][j+1]))
            m_new = min(m_new, s[i][j+1])
    tij = set(tij_new)
    m = m_new
    ans.append(m)
print("".join(ans))
0