結果

問題 No.2064 Smallest Sequence on Grid
ユーザー titiatitia
提出日時 2022-09-09 07:30:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,019 ms / 3,000 ms
コード長 507 bytes
コンパイル時間 242 ms
コンパイル使用メモリ 82,512 KB
実行使用メモリ 102,400 KB
最終ジャッジ日時 2024-11-25 05:04:15
合計ジャッジ時間 17,370 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
53,440 KB
testcase_01 AC 35 ms
52,552 KB
testcase_02 AC 36 ms
52,608 KB
testcase_03 AC 36 ms
52,280 KB
testcase_04 AC 34 ms
53,472 KB
testcase_05 AC 33 ms
53,240 KB
testcase_06 AC 34 ms
52,616 KB
testcase_07 AC 37 ms
53,532 KB
testcase_08 AC 45 ms
59,676 KB
testcase_09 AC 43 ms
59,404 KB
testcase_10 AC 46 ms
62,180 KB
testcase_11 AC 49 ms
61,312 KB
testcase_12 AC 50 ms
62,616 KB
testcase_13 AC 51 ms
64,904 KB
testcase_14 AC 56 ms
67,300 KB
testcase_15 AC 49 ms
65,340 KB
testcase_16 AC 48 ms
64,364 KB
testcase_17 AC 105 ms
85,492 KB
testcase_18 AC 106 ms
85,548 KB
testcase_19 AC 111 ms
85,448 KB
testcase_20 AC 1,512 ms
98,568 KB
testcase_21 AC 1,788 ms
100,432 KB
testcase_22 AC 1,157 ms
95,076 KB
testcase_23 AC 1,082 ms
94,348 KB
testcase_24 AC 1,072 ms
94,080 KB
testcase_25 AC 1,069 ms
93,964 KB
testcase_26 AC 2,019 ms
102,336 KB
testcase_27 AC 1,994 ms
102,400 KB
testcase_28 AC 105 ms
85,984 KB
testcase_29 AC 1,852 ms
100,240 KB
testcase_30 AC 106 ms
85,212 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=[set() 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].add((z,w))

    for i in range(26):
        if D[i]!=set():
            ANS.append(chr(i+97))
            break
            
    Q=D[i]
        
print("".join(ANS))  
0