結果

問題 No.2064 Smallest Sequence on Grid
ユーザー vwxyzvwxyz
提出日時 2023-01-14 19:47:41
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
TLE  
実行時間 -
コード長 422 bytes
コンパイル時間 269 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 38,808 KB
最終ジャッジ日時 2024-12-26 05:15:09
合計ジャッジ時間 39,707 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
15,872 KB
testcase_01 AC 32 ms
31,148 KB
testcase_02 AC 35 ms
15,744 KB
testcase_03 AC 30 ms
15,872 KB
testcase_04 AC 30 ms
15,744 KB
testcase_05 AC 28 ms
31,284 KB
testcase_06 AC 29 ms
15,744 KB
testcase_07 AC 30 ms
16,128 KB
testcase_08 AC 30 ms
15,744 KB
testcase_09 AC 30 ms
31,476 KB
testcase_10 AC 31 ms
16,000 KB
testcase_11 AC 31 ms
16,000 KB
testcase_12 AC 31 ms
15,744 KB
testcase_13 AC 33 ms
31,168 KB
testcase_14 AC 36 ms
15,872 KB
testcase_15 AC 35 ms
31,048 KB
testcase_16 AC 33 ms
15,744 KB
testcase_17 AC 67 ms
19,968 KB
testcase_18 AC 65 ms
19,712 KB
testcase_19 AC 66 ms
19,840 KB
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 AC 82 ms
19,968 KB
testcase_29 TLE -
testcase_30 AC 69 ms
38,808 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(*ans_lst,sep="")
0