結果

問題 No.2064 Smallest Sequence on Grid
ユーザー vwxyzvwxyz
提出日時 2023-01-14 19:56:32
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 2,855 ms / 3,000 ms
コード長 423 bytes
コンパイル時間 1,430 ms
コンパイル使用メモリ 76,672 KB
実行使用メモリ 142,080 KB
最終ジャッジ日時 2024-06-07 20:22:22
合計ジャッジ時間 24,272 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 95 ms
75,264 KB
testcase_01 AC 97 ms
75,520 KB
testcase_02 AC 80 ms
75,520 KB
testcase_03 AC 82 ms
75,520 KB
testcase_04 AC 79 ms
75,392 KB
testcase_05 AC 76 ms
75,520 KB
testcase_06 AC 76 ms
75,264 KB
testcase_07 AC 79 ms
75,264 KB
testcase_08 AC 80 ms
75,520 KB
testcase_09 AC 81 ms
75,776 KB
testcase_10 AC 82 ms
75,648 KB
testcase_11 AC 84 ms
76,416 KB
testcase_12 AC 81 ms
76,160 KB
testcase_13 AC 89 ms
77,824 KB
testcase_14 AC 94 ms
78,208 KB
testcase_15 AC 91 ms
78,208 KB
testcase_16 AC 92 ms
78,336 KB
testcase_17 AC 141 ms
87,808 KB
testcase_18 AC 142 ms
87,936 KB
testcase_19 AC 140 ms
88,064 KB
testcase_20 AC 2,068 ms
121,344 KB
testcase_21 AC 2,175 ms
123,776 KB
testcase_22 AC 1,412 ms
106,496 KB
testcase_23 AC 1,456 ms
112,896 KB
testcase_24 AC 1,481 ms
112,896 KB
testcase_25 AC 1,500 ms
113,536 KB
testcase_26 AC 2,834 ms
142,080 KB
testcase_27 AC 2,855 ms
141,952 KB
testcase_28 AC 142 ms
87,688 KB
testcase_29 AC 2,437 ms
125,696 KB
testcase_30 AC 158 ms
87,552 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)
    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