結果

問題 No.2064 Smallest Sequence on Grid
ユーザー ニックネームニックネーム
提出日時 2022-09-02 22:00:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,063 ms / 3,000 ms
コード長 488 bytes
コンパイル時間 344 ms
コンパイル使用メモリ 81,992 KB
実行使用メモリ 108,328 KB
最終ジャッジ日時 2024-11-16 03:25:43
合計ジャッジ時間 16,985 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,452 KB
testcase_01 AC 38 ms
52,640 KB
testcase_02 AC 38 ms
52,756 KB
testcase_03 AC 38 ms
52,424 KB
testcase_04 AC 38 ms
52,472 KB
testcase_05 AC 37 ms
52,740 KB
testcase_06 AC 39 ms
52,108 KB
testcase_07 AC 38 ms
53,124 KB
testcase_08 AC 43 ms
52,744 KB
testcase_09 AC 42 ms
52,572 KB
testcase_10 AC 41 ms
52,764 KB
testcase_11 AC 41 ms
53,376 KB
testcase_12 AC 40 ms
53,644 KB
testcase_13 AC 51 ms
64,508 KB
testcase_14 AC 49 ms
61,912 KB
testcase_15 AC 49 ms
61,760 KB
testcase_16 AC 49 ms
62,520 KB
testcase_17 AC 119 ms
84,440 KB
testcase_18 AC 120 ms
84,824 KB
testcase_19 AC 119 ms
84,340 KB
testcase_20 AC 1,431 ms
101,148 KB
testcase_21 AC 1,585 ms
102,152 KB
testcase_22 AC 1,031 ms
96,412 KB
testcase_23 AC 1,097 ms
97,040 KB
testcase_24 AC 1,098 ms
96,900 KB
testcase_25 AC 1,114 ms
96,680 KB
testcase_26 AC 2,060 ms
108,172 KB
testcase_27 AC 2,063 ms
108,300 KB
testcase_28 AC 125 ms
84,612 KB
testcase_29 AC 1,701 ms
108,328 KB
testcase_30 AC 124 ms
84,688 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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