結果

問題 No.2064 Smallest Sequence on Grid
ユーザー 👑 rin204rin204
提出日時 2022-09-02 21:26:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 954 ms / 3,000 ms
コード長 690 bytes
コンパイル時間 396 ms
コンパイル使用メモリ 82,300 KB
実行使用メモリ 97,548 KB
最終ジャッジ日時 2024-11-16 02:16:58
合計ジャッジ時間 10,093 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,996 KB
testcase_01 AC 37 ms
52,884 KB
testcase_02 AC 37 ms
53,180 KB
testcase_03 AC 37 ms
52,604 KB
testcase_04 AC 37 ms
52,280 KB
testcase_05 AC 36 ms
52,924 KB
testcase_06 AC 37 ms
52,816 KB
testcase_07 AC 37 ms
53,536 KB
testcase_08 AC 38 ms
52,452 KB
testcase_09 AC 38 ms
52,632 KB
testcase_10 AC 39 ms
54,472 KB
testcase_11 AC 41 ms
53,968 KB
testcase_12 AC 40 ms
53,316 KB
testcase_13 AC 50 ms
62,500 KB
testcase_14 AC 47 ms
61,560 KB
testcase_15 AC 47 ms
61,628 KB
testcase_16 AC 48 ms
61,564 KB
testcase_17 AC 123 ms
84,488 KB
testcase_18 AC 118 ms
84,692 KB
testcase_19 AC 116 ms
84,432 KB
testcase_20 AC 779 ms
92,300 KB
testcase_21 AC 847 ms
93,384 KB
testcase_22 AC 592 ms
90,228 KB
testcase_23 AC 470 ms
88,804 KB
testcase_24 AC 469 ms
88,788 KB
testcase_25 AC 474 ms
88,588 KB
testcase_26 AC 802 ms
91,796 KB
testcase_27 AC 810 ms
91,740 KB
testcase_28 AC 118 ms
84,748 KB
testcase_29 AC 954 ms
97,548 KB
testcase_30 AC 126 ms
84,600 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

h, w = map(int, input().split())
S = [input() for _ in range(h)]
def f(i, j):
    return i * w + j
ans = [S[0][0]]
se = {0}
for _ in range(h + w - 2):
    nex = set()
    mi = "z"
    for p in se:
        i = p // w
        j = p - i * w
        if i != h - 1:
            s = S[i + 1][j]
            if s < mi:
                mi = s
                nex = {f(i + 1, j)}
            elif s == mi:
                nex.add(f(i + 1, j))
        if j != w - 1:
            s = S[i][j + 1]
            if s < mi:
                mi = s
                nex = {f(i, j + 1)}
            elif s == mi:
                nex.add(f(i, j + 1))
        
    ans.append(mi)
    se = nex
print(*ans, sep="")
0