結果

問題 No.2064 Smallest Sequence on Grid
ユーザー るさるさ
提出日時 2021-09-29 00:29:00
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 853 bytes
コンパイル時間 208 ms
コンパイル使用メモリ 82,128 KB
実行使用メモリ 848,332 KB
最終ジャッジ日時 2024-04-27 20:13:33
合計ジャッジ時間 5,564 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
51,840 KB
testcase_01 AC 34 ms
51,840 KB
testcase_02 AC 37 ms
52,480 KB
testcase_03 AC 47 ms
51,968 KB
testcase_04 AC 48 ms
52,480 KB
testcase_05 AC 48 ms
51,968 KB
testcase_06 AC 36 ms
52,096 KB
testcase_07 AC 37 ms
52,480 KB
testcase_08 AC 41 ms
59,008 KB
testcase_09 AC 43 ms
58,240 KB
testcase_10 AC 39 ms
60,160 KB
testcase_11 MLE -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

h,w = map(int, input().split())
Alpha = "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
alpha = "abcdefghijklmnopqrstuvwxyz"
Dict_alpha = {}
dict_alpha = {}
for i in range(26):
    Dict_alpha[Alpha[i]] = i
    dict_alpha[alpha[i]] = i
Dec = lambda x:Dict_alpha[x]
dec = lambda x:dict_alpha[x]
s = [list(map(dec, list(input()))) + [26] for i in range(h)] + [[26] * w]
#print(s)
st = [(0,0)]
ans = [alpha[s[0][0]]]

for i in range(h+w-2):
    mn = 100
    nst = []
    for jx, jy in st:
        t = s[jx+1][jy]
        if t == mn:
            nst.append((jx+1, jy))
        elif t < mn:
            mn = t
            nst = [(jx+1, jy)]
            
        t = s[jx][jy+1]
        if t == mn:
            nst.append((jx, jy+1))
        elif t < mn:
            mn = t
            nst = [(jx, jy+1)]
    st = nst
    #print(mn)
    ans.append(alpha[mn])

print("".join(ans))
0