結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,212 KB
testcase_01 AC 39 ms
52,376 KB
testcase_02 AC 38 ms
52,908 KB
testcase_03 AC 38 ms
52,612 KB
testcase_04 AC 38 ms
52,940 KB
testcase_05 AC 38 ms
53,236 KB
testcase_06 AC 38 ms
52,312 KB
testcase_07 AC 38 ms
52,992 KB
testcase_08 AC 38 ms
53,096 KB
testcase_09 AC 39 ms
52,836 KB
testcase_10 AC 41 ms
58,060 KB
testcase_11 AC 43 ms
58,564 KB
testcase_12 AC 43 ms
59,092 KB
testcase_13 AC 50 ms
63,788 KB
testcase_14 AC 52 ms
65,812 KB
testcase_15 AC 52 ms
64,004 KB
testcase_16 AC 50 ms
64,608 KB
testcase_17 AC 107 ms
85,264 KB
testcase_18 AC 103 ms
85,116 KB
testcase_19 AC 110 ms
85,580 KB
testcase_20 AC 2,290 ms
178,792 KB
testcase_21 AC 2,482 ms
187,352 KB
testcase_22 AC 1,645 ms
145,804 KB
testcase_23 AC 1,644 ms
159,384 KB
testcase_24 AC 1,659 ms
159,044 KB
testcase_25 AC 1,675 ms
159,092 KB
testcase_26 TLE -
testcase_27 TLE -
testcase_28 AC 109 ms
85,780 KB
testcase_29 AC 2,632 ms
229,116 KB
testcase_30 AC 118 ms
84,936 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
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