結果

問題 No.2064 Smallest Sequence on Grid
ユーザー vwxyzvwxyz
提出日時 2023-01-14 19:48:08
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 422 bytes
コンパイル時間 274 ms
コンパイル使用メモリ 82,084 KB
実行使用メモリ 136,028 KB
最終ジャッジ日時 2024-06-07 20:15:05
合計ジャッジ時間 24,430 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,528 KB
testcase_01 AC 39 ms
52,600 KB
testcase_02 AC 37 ms
52,428 KB
testcase_03 AC 37 ms
52,820 KB
testcase_04 AC 38 ms
52,640 KB
testcase_05 AC 38 ms
52,144 KB
testcase_06 AC 39 ms
52,812 KB
testcase_07 AC 37 ms
51,940 KB
testcase_08 AC 40 ms
53,068 KB
testcase_09 AC 38 ms
53,480 KB
testcase_10 AC 38 ms
53,224 KB
testcase_11 AC 42 ms
58,508 KB
testcase_12 AC 42 ms
58,456 KB
testcase_13 AC 48 ms
62,100 KB
testcase_14 AC 53 ms
64,272 KB
testcase_15 AC 53 ms
65,208 KB
testcase_16 AC 51 ms
64,240 KB
testcase_17 AC 134 ms
85,896 KB
testcase_18 AC 131 ms
85,948 KB
testcase_19 AC 133 ms
85,836 KB
testcase_20 AC 2,216 ms
114,608 KB
testcase_21 AC 2,436 ms
119,744 KB
testcase_22 AC 1,522 ms
102,124 KB
testcase_23 AC 1,652 ms
110,184 KB
testcase_24 AC 1,659 ms
111,128 KB
testcase_25 AC 1,683 ms
111,148 KB
testcase_26 TLE -
testcase_27 TLE -
testcase_28 AC 146 ms
86,924 KB
testcase_29 AC 2,706 ms
122,520 KB
testcase_30 AC 160 ms
85,704 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