結果

問題 No.2064 Smallest Sequence on Grid
ユーザー vwxyzvwxyz
提出日時 2023-01-14 23:45:13
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 676 bytes
コンパイル時間 493 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 883,244 KB
最終ジャッジ日時 2024-12-26 12:15:05
合計ジャッジ時間 60,280 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
57,088 KB
testcase_01 MLE -
testcase_02 AC 36 ms
56,960 KB
testcase_03 MLE -
testcase_04 AC 39 ms
56,960 KB
testcase_05 MLE -
testcase_06 AC 39 ms
51,840 KB
testcase_07 MLE -
testcase_08 AC 39 ms
52,352 KB
testcase_09 MLE -
testcase_10 AC 44 ms
52,608 KB
testcase_11 MLE -
testcase_12 AC 83 ms
78,592 KB
testcase_13 MLE -
testcase_14 TLE -
testcase_15 MLE -
testcase_16 MLE -
testcase_17 AC 422 ms
84,372 KB
testcase_18 MLE -
testcase_19 AC 168 ms
85,384 KB
testcase_20 MLE -
testcase_21 TLE -
testcase_22 MLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 AC 238 ms
85,180 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[::-1]:
        if w+1<W and S[h][w+1]==s:
            if queue and (h,w+1)==queue[-1]:
                continue
            queue.append((h,w+1))
        if h+1<H and S[h+1][w]==s:
            if queue and (h+1,w)==queue[-1]:
                continue
            queue.append((h+1,w))
print(*ans_lst,sep="")
0