結果

問題 No.2064 Smallest Sequence on Grid
ユーザー titiatitia
提出日時 2022-09-09 07:27:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,388 ms / 3,000 ms
コード長 595 bytes
コンパイル時間 164 ms
コンパイル使用メモリ 82,164 KB
実行使用メモリ 133,312 KB
最終ジャッジ日時 2024-11-25 05:00:27
合計ジャッジ時間 18,916 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,508 KB
testcase_01 AC 33 ms
52,076 KB
testcase_02 AC 34 ms
52,636 KB
testcase_03 AC 33 ms
53,584 KB
testcase_04 AC 33 ms
52,576 KB
testcase_05 AC 34 ms
53,116 KB
testcase_06 AC 35 ms
53,164 KB
testcase_07 AC 34 ms
53,016 KB
testcase_08 AC 41 ms
60,196 KB
testcase_09 AC 39 ms
59,996 KB
testcase_10 AC 40 ms
61,732 KB
testcase_11 AC 43 ms
61,276 KB
testcase_12 AC 49 ms
62,216 KB
testcase_13 AC 51 ms
66,572 KB
testcase_14 AC 52 ms
66,580 KB
testcase_15 AC 50 ms
64,916 KB
testcase_16 AC 51 ms
65,732 KB
testcase_17 AC 112 ms
85,564 KB
testcase_18 AC 108 ms
85,912 KB
testcase_19 AC 114 ms
85,752 KB
testcase_20 AC 1,785 ms
116,848 KB
testcase_21 AC 1,945 ms
126,312 KB
testcase_22 AC 1,264 ms
106,044 KB
testcase_23 AC 1,276 ms
110,264 KB
testcase_24 AC 1,209 ms
109,324 KB
testcase_25 AC 1,247 ms
109,448 KB
testcase_26 AC 2,388 ms
133,312 KB
testcase_27 AC 2,330 ms
133,188 KB
testcase_28 AC 110 ms
85,504 KB
testcase_29 AC 2,109 ms
127,144 KB
testcase_30 AC 110 ms
84,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

H,W=map(int,input().split())
S=[input().strip() for i in range(H)]

Q=[(0,0)]

ANS=[S[0][0]]

while Q:
    D=[[] for i in range(26)]
    
    while Q:
        x,y=Q.pop()

        for z,w in [(x+1,y),(x,y+1)]:
            if 0<=z<H and 0<=w<W:
                k=S[z][w]
                D[ord(k)-97].append((z,w))

    for i in range(26):
        if D[i]!=[]:
            ANS.append(chr(i+97))
            break
            
    Q=[]
    for to in D[i]:
        Q.append(to)

    Q=list(set(Q))
        
print("".join(ANS))   
                
            
0