結果

問題 No.2064 Smallest Sequence on Grid
ユーザー vwxyzvwxyz
提出日時 2023-01-14 23:34:58
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 600 bytes
コンパイル時間 1,141 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 936,128 KB
最終ジャッジ日時 2024-12-26 12:01:08
合計ジャッジ時間 70,310 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 MLE -
testcase_01 AC 46 ms
57,088 KB
testcase_02 MLE -
testcase_03 MLE -
testcase_04 MLE -
testcase_05 AC 48 ms
57,088 KB
testcase_06 MLE -
testcase_07 MLE -
testcase_08 MLE -
testcase_09 MLE -
testcase_10 AC 51 ms
58,112 KB
testcase_11 AC 1,207 ms
287,384 KB
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 AC 679 ms
85,760 KB
testcase_18 AC 303 ms
84,992 KB
testcase_19 AC 271 ms
84,736 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 396 ms
85,376 KB
testcase_29 TLE -
testcase_30 MLE -
権限があれば一括ダウンロードができます

ソースコード

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)
    prev=queue
    queue=[]
    for h,w in prev:
        if h+1<H and S[h+1][w]==s:
            queue.append((h+1,w))
        if w+1<W and S[h][w+1]==s:
            if queue and (h,w+1)==queue[-1]:
                continue
            queue.append((h,w+1))
print(*ans_lst,sep="")
0