結果

問題 No.971 いたずらっ子
ユーザー 双六双六
提出日時 2020-08-04 23:03:10
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 563 ms / 2,000 ms
コード長 886 bytes
コンパイル時間 423 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 298,112 KB
最終ジャッジ日時 2024-11-07 11:46:36
合計ジャッジ時間 6,451 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 555 ms
297,856 KB
testcase_01 AC 563 ms
297,856 KB
testcase_02 AC 394 ms
225,920 KB
testcase_03 AC 487 ms
298,112 KB
testcase_04 AC 467 ms
284,800 KB
testcase_05 AC 478 ms
297,984 KB
testcase_06 AC 351 ms
246,784 KB
testcase_07 AC 64 ms
65,664 KB
testcase_08 AC 160 ms
119,040 KB
testcase_09 AC 158 ms
119,296 KB
testcase_10 AC 57 ms
62,848 KB
testcase_11 AC 46 ms
53,888 KB
testcase_12 AC 47 ms
53,888 KB
testcase_13 AC 51 ms
59,520 KB
testcase_14 AC 92 ms
73,600 KB
testcase_15 AC 51 ms
59,520 KB
testcase_16 AC 52 ms
54,912 KB
testcase_17 AC 47 ms
53,632 KB
testcase_18 AC 46 ms
53,632 KB
testcase_19 AC 46 ms
53,760 KB
testcase_20 AC 49 ms
53,632 KB
testcase_21 AC 46 ms
54,016 KB
testcase_22 AC 48 ms
53,760 KB
testcase_23 AC 48 ms
53,760 KB
testcase_24 AC 47 ms
53,632 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# import sys; input = sys.stdin.buffer.readline
# sys.setrecursionlimit(10**7)
from collections import defaultdict
con = 10 ** 9 + 7; INF = float("inf")

def getlist():
	return list(map(int, input().split()))

#処理内容
def main():
	H, W = getlist()
	table = []
	for i in range(H):
		l = list(input())
		table.append(l)

	DP = [[INF] * W for i in range(H)]
	DP[0][0] = 0
	for j in range(1, W):
		if table[0][j] == ".":
			DP[0][j] = DP[0][j - 1] + 1
		else:
			DP[0][j] = DP[0][j - 1] + 1 + j

	for i in range(1, H):
		if table[i][0] == ".":
			DP[i][0] = DP[i - 1][0] + 1
		else:
			DP[i][0] = DP[i - 1][0] + 1 + i

	# DP
	for i in range(1, H):
		for j in range(1, W):
			if table[i][j] == ".":
				DP[i][j] = min(DP[i - 1][j], DP[i][j - 1]) + 1
			else:
				DP[i][j] = min(DP[i - 1][j], DP[i][j - 1]) + 1 + i + j


	ans = DP[-1][-1]
	print(ans)

if __name__ == '__main__':
	main()
0