結果

問題 No.2064 Smallest Sequence on Grid
ユーザー ikomaikoma
提出日時 2022-09-02 21:45:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,319 ms / 3,000 ms
コード長 771 bytes
コンパイル時間 307 ms
コンパイル使用メモリ 82,468 KB
実行使用メモリ 251,484 KB
最終ジャッジ日時 2024-11-16 02:57:51
合計ジャッジ時間 13,377 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,480 KB
testcase_01 AC 34 ms
54,096 KB
testcase_02 AC 34 ms
52,204 KB
testcase_03 AC 36 ms
52,412 KB
testcase_04 AC 34 ms
53,320 KB
testcase_05 AC 35 ms
52,752 KB
testcase_06 AC 33 ms
52,596 KB
testcase_07 AC 33 ms
51,812 KB
testcase_08 AC 38 ms
58,716 KB
testcase_09 AC 39 ms
59,320 KB
testcase_10 AC 38 ms
59,552 KB
testcase_11 AC 40 ms
60,468 KB
testcase_12 AC 41 ms
60,440 KB
testcase_13 AC 44 ms
62,416 KB
testcase_14 AC 46 ms
64,932 KB
testcase_15 AC 45 ms
62,716 KB
testcase_16 AC 46 ms
64,024 KB
testcase_17 AC 267 ms
215,228 KB
testcase_18 AC 269 ms
214,608 KB
testcase_19 AC 276 ms
214,364 KB
testcase_20 AC 1,048 ms
242,428 KB
testcase_21 AC 1,160 ms
246,024 KB
testcase_22 AC 825 ms
235,096 KB
testcase_23 AC 804 ms
238,920 KB
testcase_24 AC 813 ms
238,740 KB
testcase_25 AC 798 ms
238,800 KB
testcase_26 AC 1,319 ms
251,484 KB
testcase_27 AC 1,257 ms
251,428 KB
testcase_28 AC 277 ms
214,516 KB
testcase_29 AC 1,094 ms
220,892 KB
testcase_30 AC 273 ms
205,300 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
H,W=map(int,input().split())
S=[list(map(lambda x:ord(x),input())) for _ in range(H)]
INF=1<<60
check = [[0]*W for _ in range(H)]

ans = [S[0][0]]
que = [(0,0)]
check[0][0]=1
while que:
    que2 = []
    smin = INF
    for h,w in que:
        if h+1<H and check[h+1][w]==0:
            check[h+1][w]=1
            s = S[h+1][w]
            if s < smin:
                smin = s
            que2.append((s,h+1,w))
        if w+1<W and check[h][w+1]==0:
            check[h][w+1]=1
            s = S[h][w+1]
            if s < smin:
                smin = s
            que2.append((s,h,w+1))
    ans.append(smin)
    que = []
    for s,h,w in que2:
        if s==smin:
            que.append((h,w))

print("".join(map(chr, ans[:-1])))
0