結果

問題 No.2064 Smallest Sequence on Grid
ユーザー vwxyzvwxyz
提出日時 2023-01-14 23:57:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,473 ms / 3,000 ms
コード長 466 bytes
コンパイル時間 167 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 120,448 KB
最終ジャッジ日時 2024-06-08 00:27:49
合計ジャッジ時間 19,270 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,712 KB
testcase_01 AC 39 ms
51,968 KB
testcase_02 AC 38 ms
51,712 KB
testcase_03 AC 38 ms
51,456 KB
testcase_04 AC 38 ms
51,712 KB
testcase_05 AC 38 ms
51,584 KB
testcase_06 AC 38 ms
51,712 KB
testcase_07 AC 40 ms
51,584 KB
testcase_08 AC 40 ms
52,096 KB
testcase_09 AC 38 ms
51,968 KB
testcase_10 AC 40 ms
52,480 KB
testcase_11 AC 40 ms
52,992 KB
testcase_12 AC 39 ms
53,120 KB
testcase_13 AC 54 ms
61,568 KB
testcase_14 AC 57 ms
63,360 KB
testcase_15 AC 55 ms
63,232 KB
testcase_16 AC 55 ms
63,104 KB
testcase_17 AC 133 ms
85,760 KB
testcase_18 AC 123 ms
86,272 KB
testcase_19 AC 123 ms
86,144 KB
testcase_20 AC 1,705 ms
103,424 KB
testcase_21 AC 1,825 ms
105,600 KB
testcase_22 AC 1,183 ms
95,616 KB
testcase_23 AC 1,312 ms
102,912 KB
testcase_24 AC 1,308 ms
102,912 KB
testcase_25 AC 1,328 ms
102,912 KB
testcase_26 AC 2,473 ms
120,448 KB
testcase_27 AC 2,466 ms
120,448 KB
testcase_28 AC 129 ms
85,760 KB
testcase_29 AC 2,099 ms
107,392 KB
testcase_30 AC 152 ms
85,632 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