結果

問題 No.2064 Smallest Sequence on Grid
ユーザー titiatitia
提出日時 2022-09-09 07:27:38
言語 PyPy3
(7.3.15)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 595 bytes
コンパイル時間 437 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 133,684 KB
最終ジャッジ日時 2024-05-03 23:29:01
合計ジャッジ時間 24,135 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
51,584 KB
testcase_01 AC 42 ms
52,224 KB
testcase_02 AC 42 ms
51,840 KB
testcase_03 AC 40 ms
52,096 KB
testcase_04 AC 38 ms
52,224 KB
testcase_05 AC 39 ms
52,224 KB
testcase_06 AC 38 ms
52,480 KB
testcase_07 AC 38 ms
52,352 KB
testcase_08 AC 45 ms
59,520 KB
testcase_09 AC 42 ms
58,240 KB
testcase_10 AC 47 ms
60,160 KB
testcase_11 AC 48 ms
60,800 KB
testcase_12 AC 49 ms
61,184 KB
testcase_13 AC 58 ms
65,408 KB
testcase_14 AC 56 ms
65,920 KB
testcase_15 AC 55 ms
64,640 KB
testcase_16 AC 55 ms
65,152 KB
testcase_17 AC 138 ms
85,504 KB
testcase_18 AC 125 ms
85,760 KB
testcase_19 AC 128 ms
86,012 KB
testcase_20 AC 2,294 ms
116,608 KB
testcase_21 AC 2,497 ms
126,372 KB
testcase_22 AC 1,633 ms
106,060 KB
testcase_23 AC 1,559 ms
109,396 KB
testcase_24 AC 1,559 ms
109,440 KB
testcase_25 AC 1,568 ms
109,540 KB
testcase_26 TLE -
testcase_27 AC 2,973 ms
133,684 KB
testcase_28 AC 123 ms
86,256 KB
testcase_29 AC 2,673 ms
126,976 KB
testcase_30 AC 119 ms
85,120 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