結果

問題 No.2064 Smallest Sequence on Grid
ユーザー vwxyzvwxyz
提出日時 2023-01-14 23:56:56
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,528 ms / 3,000 ms
コード長 436 bytes
コンパイル時間 166 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 141,312 KB
最終ジャッジ日時 2024-06-08 00:27:20
合計ジャッジ時間 19,040 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,096 KB
testcase_01 AC 36 ms
51,584 KB
testcase_02 AC 33 ms
51,840 KB
testcase_03 AC 34 ms
51,712 KB
testcase_04 AC 33 ms
52,224 KB
testcase_05 AC 34 ms
51,456 KB
testcase_06 AC 34 ms
51,968 KB
testcase_07 AC 34 ms
51,840 KB
testcase_08 AC 36 ms
52,096 KB
testcase_09 AC 36 ms
52,096 KB
testcase_10 AC 36 ms
52,608 KB
testcase_11 AC 40 ms
58,240 KB
testcase_12 AC 40 ms
58,240 KB
testcase_13 AC 46 ms
60,800 KB
testcase_14 AC 52 ms
64,128 KB
testcase_15 AC 50 ms
63,232 KB
testcase_16 AC 50 ms
63,872 KB
testcase_17 AC 123 ms
86,088 KB
testcase_18 AC 121 ms
85,760 KB
testcase_19 AC 121 ms
85,888 KB
testcase_20 AC 1,692 ms
117,760 KB
testcase_21 AC 1,895 ms
122,752 KB
testcase_22 AC 1,183 ms
103,424 KB
testcase_23 AC 1,271 ms
113,536 KB
testcase_24 AC 1,269 ms
113,920 KB
testcase_25 AC 1,315 ms
114,408 KB
testcase_26 AC 2,473 ms
141,312 KB
testcase_27 AC 2,528 ms
141,312 KB
testcase_28 AC 137 ms
86,016 KB
testcase_29 AC 2,081 ms
126,304 KB
testcase_30 AC 150 ms
85,444 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=min([S[h+1][w] for h,w in queue if h+1<H]+[S[h][w+1] for h,w in queue if w+1<W])
    ans_lst.append(s)
    prev=queue
    queue=list({(h+1,w) for h,w in prev if h+1<H and S[h+1][w]==s}|{(h,w+1) for h,w in prev if w+1<W and S[h][w+1]==s})
print("".join(ans_lst))
0