結果

問題 No.496 ワープクリスタル (給料日前編)
ユーザー daleksprinterdaleksprinter
提出日時 2018-08-27 00:12:39
言語 Python2
(2.7.18)
結果
WA  
実行時間 -
コード長 556 bytes
コンパイル時間 42 ms
コンパイル使用メモリ 7,040 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-07-01 04:04:21
合計ジャッジ時間 3,191 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 12 ms
6,812 KB
testcase_01 AC 12 ms
6,940 KB
testcase_02 AC 12 ms
6,940 KB
testcase_03 AC 11 ms
6,940 KB
testcase_04 WA -
testcase_05 AC 12 ms
6,944 KB
testcase_06 AC 20 ms
6,940 KB
testcase_07 AC 11 ms
6,940 KB
testcase_08 AC 384 ms
6,940 KB
testcase_09 AC 386 ms
6,944 KB
testcase_10 AC 14 ms
6,940 KB
testcase_11 AC 15 ms
6,940 KB
testcase_12 AC 22 ms
6,944 KB
testcase_13 AC 31 ms
6,940 KB
testcase_14 AC 48 ms
6,940 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 50 ms
6,940 KB
testcase_19 WA -
testcase_20 AC 38 ms
6,940 KB
testcase_21 AC 21 ms
6,940 KB
testcase_22 WA -
testcase_23 AC 212 ms
6,940 KB
testcase_24 AC 207 ms
6,940 KB
testcase_25 AC 197 ms
6,940 KB
testcase_26 AC 208 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

gx, gy, n, f = map(int,raw_input().split())

inf = float("inf")
dp = [[inf for i in range(gx+1)] for i in range(gy+1)]; dp[0][0] = 0
arr = [map(int,raw_input().split()) for i in range(n)]

for i in range(gy + 1):
	for j in range(gx + 1):
		dp[i][j] = min(dp[i][j], (dp[i-1][j] + f) if i-1 > -1 else inf, (dp[i][j-1] + f) if j-1 > -1 else inf)


for x,y,cost in arr:
	for i in range(gy + 1):
		for j in range(gx + 1):
			dx = j + x; dy = i + y
			if -1 < dx < gx + 1 and -1 < dy < gy + 1 :
				dp[dy][dx] = min(dp[i][j] + cost, dp[dy][dx])

print dp[gy][gx]
0