結果

問題 No.496 ワープクリスタル (給料日前編)
ユーザー tabataba
提出日時 2017-04-03 04:54:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 321 ms / 2,000 ms
コード長 570 bytes
コンパイル時間 630 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 78,720 KB
最終ジャッジ日時 2024-07-08 01:29:43
合計ジャッジ時間 3,736 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,096 KB
testcase_01 AC 36 ms
52,352 KB
testcase_02 AC 36 ms
51,968 KB
testcase_03 AC 39 ms
52,096 KB
testcase_04 AC 36 ms
51,968 KB
testcase_05 AC 35 ms
51,712 KB
testcase_06 AC 56 ms
65,792 KB
testcase_07 AC 34 ms
51,712 KB
testcase_08 AC 81 ms
76,160 KB
testcase_09 AC 321 ms
78,720 KB
testcase_10 AC 48 ms
62,592 KB
testcase_11 AC 50 ms
63,488 KB
testcase_12 AC 65 ms
69,376 KB
testcase_13 AC 86 ms
76,160 KB
testcase_14 AC 103 ms
76,648 KB
testcase_15 AC 81 ms
76,288 KB
testcase_16 AC 81 ms
76,416 KB
testcase_17 AC 84 ms
76,544 KB
testcase_18 AC 82 ms
76,288 KB
testcase_19 AC 89 ms
76,288 KB
testcase_20 AC 80 ms
76,416 KB
testcase_21 AC 73 ms
72,576 KB
testcase_22 AC 134 ms
77,056 KB
testcase_23 AC 139 ms
76,976 KB
testcase_24 AC 136 ms
77,368 KB
testcase_25 AC 129 ms
76,732 KB
testcase_26 AC 133 ms
77,312 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

gx,gy,n,f=map(int,input().split())
c=[list(map(int,input().split()))for _ in[0]*n]
gx+=1
gy+=1
d=[[1e99]*gx for _ in[0]*gy]
d[0][0]=0
def dp(x,y,u):
	for i in range(n):
		if u[i]:continue
		nx=x+c[i][0]
		ny=y+c[i][1]
		if nx<gx and ny<gy and d[y][x]+c[i][2]<d[ny][nx]:
			d[ny][nx]=d[y][x]+c[i][2]
			nu=u[:]
			nu[i]=True
			dp(nx,ny,nu)
	nx=x+1
	ny=y
	if nx<gx and ny<gy and d[y][x]+f<d[ny][nx]:
		d[ny][nx]=d[y][x]+f
		dp(nx,ny,u[:])
	nx=x
	ny=y+1
	if nx<gx and ny<gy and d[y][x]+f<d[ny][nx]:
		d[ny][nx]=d[y][x]+f
		dp(nx,ny,u[:])
dp(0,0,[False]*n)
print(d[-1][-1])
0