結果

問題 No.2064 Smallest Sequence on Grid
ユーザー るさるさ
提出日時 2021-09-29 00:37:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,496 ms / 3,000 ms
コード長 869 bytes
コンパイル時間 454 ms
コンパイル使用メモリ 82,040 KB
実行使用メモリ 181,816 KB
最終ジャッジ日時 2024-11-16 01:33:09
合計ジャッジ時間 24,359 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,924 KB
testcase_01 AC 38 ms
53,624 KB
testcase_02 AC 38 ms
52,216 KB
testcase_03 AC 38 ms
51,936 KB
testcase_04 AC 37 ms
52,860 KB
testcase_05 AC 38 ms
52,580 KB
testcase_06 AC 38 ms
53,372 KB
testcase_07 AC 37 ms
53,064 KB
testcase_08 AC 43 ms
59,360 KB
testcase_09 AC 41 ms
59,536 KB
testcase_10 AC 43 ms
61,344 KB
testcase_11 AC 44 ms
59,816 KB
testcase_12 AC 43 ms
60,108 KB
testcase_13 AC 47 ms
61,812 KB
testcase_14 AC 49 ms
64,124 KB
testcase_15 AC 52 ms
64,664 KB
testcase_16 AC 49 ms
62,668 KB
testcase_17 AC 689 ms
164,956 KB
testcase_18 AC 666 ms
165,084 KB
testcase_19 AC 660 ms
165,248 KB
testcase_20 AC 1,877 ms
176,284 KB
testcase_21 AC 2,014 ms
176,164 KB
testcase_22 AC 1,491 ms
172,720 KB
testcase_23 AC 1,561 ms
173,364 KB
testcase_24 AC 1,575 ms
173,412 KB
testcase_25 AC 1,596 ms
173,424 KB
testcase_26 AC 2,463 ms
181,384 KB
testcase_27 AC 2,496 ms
181,816 KB
testcase_28 AC 640 ms
165,084 KB
testcase_29 AC 2,053 ms
161,796 KB
testcase_30 AC 599 ms
157,756 KB
権限があれば一括ダウンロードができます

ソースコード

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 = set()
    for jx, jy in st:
        t = s[jx+1][jy]
        if t == mn:
            nst.add((jx+1, jy))
        elif t < mn:
            mn = t
            nst = {(jx+1, jy)}
            
        t = s[jx][jy+1]
        if t == mn:
            nst.add((jx, jy+1))
        elif t < mn:
            mn = t
            nst = {(jx, jy+1)}
    st = nst
    #print(len(st))
    #print(mn)
    ans.append(alpha[mn])

print("".join(ans))
0