結果

問題 No.2064 Smallest Sequence on Grid
ユーザー titiatitia
提出日時 2022-09-09 07:23:32
言語 PyPy3
(7.3.15)
結果
AC  
(最新)
TLE  
(最初)
実行時間 2,830 ms / 3,000 ms
コード長 595 bytes
コンパイル時間 147 ms
コンパイル使用メモリ 81,836 KB
実行使用メモリ 133,476 KB
最終ジャッジ日時 2024-11-25 04:57:00
合計ジャッジ時間 22,620 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,020 KB
testcase_01 AC 34 ms
52,396 KB
testcase_02 AC 33 ms
53,424 KB
testcase_03 AC 34 ms
52,800 KB
testcase_04 AC 35 ms
53,232 KB
testcase_05 AC 35 ms
52,368 KB
testcase_06 AC 34 ms
52,260 KB
testcase_07 AC 34 ms
51,944 KB
testcase_08 AC 35 ms
52,636 KB
testcase_09 AC 35 ms
53,164 KB
testcase_10 AC 36 ms
52,900 KB
testcase_11 AC 41 ms
60,524 KB
testcase_12 AC 44 ms
60,360 KB
testcase_13 AC 50 ms
63,792 KB
testcase_14 AC 47 ms
66,112 KB
testcase_15 AC 49 ms
63,560 KB
testcase_16 AC 47 ms
64,668 KB
testcase_17 AC 114 ms
86,236 KB
testcase_18 AC 105 ms
85,612 KB
testcase_19 AC 102 ms
85,876 KB
testcase_20 AC 2,264 ms
120,812 KB
testcase_21 AC 2,438 ms
127,072 KB
testcase_22 AC 1,647 ms
105,860 KB
testcase_23 AC 1,459 ms
109,680 KB
testcase_24 AC 1,497 ms
109,632 KB
testcase_25 AC 1,467 ms
110,072 KB
testcase_26 AC 2,801 ms
133,476 KB
testcase_27 AC 2,830 ms
132,656 KB
testcase_28 AC 117 ms
86,036 KB
testcase_29 AC 2,680 ms
126,220 KB
testcase_30 AC 109 ms
85,360 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=dict()
    
    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]
                if not(k in D):
                    D[k]=([(z,w)])
                else:
                    D[k].append((z,w))

    if list(D)==[]:
        break

    MIN=min(D)
    ANS.append(MIN)
    Q=[]

    for to in D[MIN]:
        Q.append(to)

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