結果

問題 No.2064 Smallest Sequence on Grid
ユーザー vwxyzvwxyz
提出日時 2023-01-14 23:56:13
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 628 bytes
コンパイル時間 291 ms
コンパイル使用メモリ 87,152 KB
実行使用メモリ 87,504 KB
最終ジャッジ日時 2023-08-27 04:29:07
合計ジャッジ時間 6,045 ms
ジャッジサーバーID
(参考情報)
judge15 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 71 ms
71,160 KB
testcase_01 AC 75 ms
71,344 KB
testcase_02 AC 74 ms
71,284 KB
testcase_03 AC 72 ms
71,400 KB
testcase_04 AC 74 ms
71,428 KB
testcase_05 AC 73 ms
71,292 KB
testcase_06 AC 73 ms
71,436 KB
testcase_07 AC 73 ms
71,280 KB
testcase_08 AC 75 ms
71,424 KB
testcase_09 AC 76 ms
71,312 KB
testcase_10 AC 74 ms
71,512 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 147 ms
86,748 KB
testcase_27 WA -
testcase_28 AC 155 ms
86,928 KB
testcase_29 AC 140 ms
84,972 KB
testcase_30 WA -
権限があれば一括ダウンロードができます

ソースコード

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)
    prev=queue
    queue=[]
    for h,w in prev:
        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("".join(ans_lst))
0