結果

問題 No.971 いたずらっ子
ユーザー titiatitia
提出日時 2020-01-17 21:37:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 810 ms / 2,000 ms
コード長 433 bytes
コンパイル時間 330 ms
コンパイル使用メモリ 82,408 KB
実行使用メモリ 266,252 KB
最終ジャッジ日時 2024-11-07 11:25:32
合計ジャッジ時間 8,262 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 810 ms
266,252 KB
testcase_01 AC 805 ms
265,988 KB
testcase_02 AC 561 ms
218,496 KB
testcase_03 AC 737 ms
265,856 KB
testcase_04 AC 633 ms
254,936 KB
testcase_05 AC 737 ms
265,728 KB
testcase_06 AC 527 ms
223,360 KB
testcase_07 AC 59 ms
72,832 KB
testcase_08 AC 227 ms
126,072 KB
testcase_09 AC 223 ms
123,392 KB
testcase_10 AC 61 ms
73,472 KB
testcase_11 AC 39 ms
52,096 KB
testcase_12 AC 43 ms
51,840 KB
testcase_13 AC 49 ms
60,160 KB
testcase_14 AC 76 ms
73,700 KB
testcase_15 AC 45 ms
59,648 KB
testcase_16 AC 43 ms
53,504 KB
testcase_17 AC 39 ms
52,096 KB
testcase_18 AC 39 ms
51,584 KB
testcase_19 AC 40 ms
51,840 KB
testcase_20 AC 40 ms
51,840 KB
testcase_21 AC 41 ms
51,712 KB
testcase_22 AC 40 ms
52,224 KB
testcase_23 AC 39 ms
52,352 KB
testcase_24 AC 39 ms
51,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

H,W=map(int,input().split())
MAP=[list(input()) for i in range(H)]


R=[[1<<30]*W for i in range(H)]
R[0][0]=0

for x in range(H):
    for y in range(W):
        
        for z,w in [[x+1,y],[x,y+1]]:
            if 0<=z<H and 0<=w<W:
                if MAP[z][w]==".":
                    R[z][w]=min(R[z][w],R[x][y])

                else:
                    R[z][w]=min(R[z][w],R[x][y]+z+w)

print(H+W-2+R[-1][-1])         
    
0