結果

問題 No.2064 Smallest Sequence on Grid
ユーザー flippergoflippergo
提出日時 2024-11-11 20:15:29
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,116 bytes
コンパイル時間 563 ms
コンパイル使用メモリ 82,008 KB
実行使用メモリ 504,704 KB
最終ジャッジ日時 2024-11-11 20:16:09
合計ジャッジ時間 25,462 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,912 KB
testcase_01 AC 39 ms
52,224 KB
testcase_02 AC 42 ms
51,840 KB
testcase_03 AC 38 ms
52,096 KB
testcase_04 AC 38 ms
52,224 KB
testcase_05 AC 39 ms
52,480 KB
testcase_06 AC 39 ms
52,352 KB
testcase_07 AC 37 ms
52,224 KB
testcase_08 AC 56 ms
61,696 KB
testcase_09 AC 48 ms
60,928 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 TLE -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 2,519 ms
504,280 KB
testcase_27 WA -
testcase_28 AC 2,338 ms
504,028 KB
testcase_29 AC 1,955 ms
436,796 KB
testcase_30 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

H,W = map(int,input().split())
S = [list(input()) for _ in range(H)]
INFTY = 10**9
D = {chr(i):i-96 for i in range(97,123)}
D[INFTY] = INFTY
Pa = {}
dp = [[INFTY for _ in range(W)] for _ in range(H)]
dp[0][0] = D[S[0][0]]
Pa[(0,0)] = -1
for i in range(H):
    for j in range(W):
        if i+1<H and j+1<W and D[S[i][j+1]]<=D[S[i+1][j]]:
            if dp[i][j]+D[S[i][j+1]]<dp[i][j+1]:
                dp[i][j+1] = dp[i][j]+D[S[i][j+1]]
                Pa[(i,j+1)] = (i,j)
        elif i+1<H and j+1<W and D[S[i][j+1]]>=D[S[i+1][j]]:
            if dp[i][j]+D[S[i+1][j]]<dp[i+1][j]:
                dp[i+1][j] = dp[i][j]+D[S[i+1][j]]
                Pa[(i+1,j)] = (i,j)
        elif i==H-1 and j+1<W:
            if dp[i][j]+D[S[i][j+1]]<dp[i][j+1]:
                dp[i][j+1] = dp[i][j]+D[S[i][j+1]]
                Pa[(i,j+1)] = (i,j)
        elif i+1<H and j==W-1:
            if dp[i][j]+D[S[i+1][j]]<dp[i+1][j]:
                dp[i+1][j] = dp[i][j]+D[S[i+1][j]]
                Pa[(i+1,j)] = (i,j)
T = []
cur = (H-1,W-1)
while cur!=-1:
    T.append(S[cur[0]][cur[1]])
    cur = Pa[cur]
print("".join(T[::-1]))
0