結果

問題 No.971 いたずらっ子
ユーザー 👑 KazunKazun
提出日時 2022-01-03 02:43:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 399 ms / 2,000 ms
コード長 612 bytes
コンパイル時間 581 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 165,120 KB
最終ジャッジ日時 2024-11-07 11:50:45
合計ジャッジ時間 5,419 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 394 ms
159,104 KB
testcase_01 AC 399 ms
158,976 KB
testcase_02 AC 313 ms
128,896 KB
testcase_03 AC 315 ms
165,120 KB
testcase_04 AC 293 ms
155,392 KB
testcase_05 AC 308 ms
164,736 KB
testcase_06 AC 247 ms
131,968 KB
testcase_07 AC 69 ms
67,584 KB
testcase_08 AC 131 ms
88,192 KB
testcase_09 AC 129 ms
90,112 KB
testcase_10 AC 57 ms
63,744 KB
testcase_11 AC 42 ms
52,096 KB
testcase_12 AC 42 ms
51,968 KB
testcase_13 AC 51 ms
59,648 KB
testcase_14 AC 100 ms
76,928 KB
testcase_15 AC 49 ms
59,776 KB
testcase_16 AC 48 ms
53,248 KB
testcase_17 AC 42 ms
51,840 KB
testcase_18 AC 41 ms
51,840 KB
testcase_19 AC 42 ms
51,840 KB
testcase_20 AC 41 ms
51,712 KB
testcase_21 AC 43 ms
52,096 KB
testcase_22 AC 42 ms
52,096 KB
testcase_23 AC 42 ms
51,456 KB
testcase_24 AC 43 ms
51,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#==================================================
H,W=map(int,input().split())

A=[]
for _ in range(H):
    A.append(list(map(lambda x:1 if x=="k" else 0,input())))

inf=float("inf")
DP=[[inf]*W for _ in range(H)]; DP[0][0]=0

for i in range(H):
    a=A[i]
    D=DP[i]
    for j in range(W):
        if i!=0:
            if a[j]==0:
                D[j]=min(D[j],DP[i-1][j]+1)
            else:
                D[j]=min(D[j],DP[i-1][j]+1+(i+j))

        if j!=0:
            if a[j]==0:
                D[j]=min(D[j],D[j-1]+1)
            else:
                D[j]=min(D[j],D[j-1]+1+(i+j))

print(DP[-1][-1])
0