結果

問題 No.2064 Smallest Sequence on Grid
ユーザー vwxyzvwxyz
提出日時 2023-01-14 23:57:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,589 ms / 3,000 ms
コード長 466 bytes
コンパイル時間 480 ms
コンパイル使用メモリ 81,724 KB
実行使用メモリ 120,552 KB
最終ジャッジ日時 2024-12-26 12:34:32
合計ジャッジ時間 20,370 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,584 KB
testcase_01 AC 40 ms
51,712 KB
testcase_02 AC 40 ms
51,456 KB
testcase_03 AC 41 ms
51,456 KB
testcase_04 AC 36 ms
51,584 KB
testcase_05 AC 40 ms
51,840 KB
testcase_06 AC 39 ms
51,712 KB
testcase_07 AC 38 ms
51,456 KB
testcase_08 AC 39 ms
52,224 KB
testcase_09 AC 38 ms
51,840 KB
testcase_10 AC 40 ms
52,352 KB
testcase_11 AC 40 ms
52,736 KB
testcase_12 AC 40 ms
52,864 KB
testcase_13 AC 50 ms
61,440 KB
testcase_14 AC 52 ms
63,232 KB
testcase_15 AC 52 ms
62,592 KB
testcase_16 AC 50 ms
63,232 KB
testcase_17 AC 127 ms
85,652 KB
testcase_18 AC 114 ms
85,868 KB
testcase_19 AC 123 ms
85,596 KB
testcase_20 AC 1,751 ms
103,168 KB
testcase_21 AC 1,926 ms
105,416 KB
testcase_22 AC 1,246 ms
94,952 KB
testcase_23 AC 1,305 ms
102,468 KB
testcase_24 AC 1,364 ms
102,608 KB
testcase_25 AC 1,318 ms
102,472 KB
testcase_26 AC 2,589 ms
120,232 KB
testcase_27 AC 2,499 ms
120,552 KB
testcase_28 AC 121 ms
86,128 KB
testcase_29 AC 2,107 ms
107,392 KB
testcase_30 AC 147 ms
84,992 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
readline=sys.stdin.readline

H,W=map(int,readline().split())
S=[readline().rstrip() for h in range(H)]
ans_lst=[S[0][0]]
queue=[(0,0)]
for _ in range(H+W-2):
    s="{"
    for h,w in queue:
        if h+1<H:
            s=min(s,S[h+1][w])
        if w+1<W:
            s=min(s,S[h][w+1])
    ans_lst.append(s)
    queue=list({(h+1,w) for h,w in queue if h+1<H and S[h+1][w]==s}|{(h,w+1) for h,w in queue if w+1<W and S[h][w+1]==s})
print("".join(ans_lst))
0