結果

問題 No.496 ワープクリスタル (給料日前編)
ユーザー tabataba
提出日時 2017-04-03 04:49:11
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,840 ms / 2,000 ms
コード長 597 bytes
コンパイル時間 143 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 11,136 KB
最終ジャッジ日時 2024-07-08 01:29:37
合計ジャッジ時間 4,917 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
10,752 KB
testcase_01 AC 31 ms
10,752 KB
testcase_02 AC 30 ms
10,752 KB
testcase_03 AC 31 ms
10,752 KB
testcase_04 AC 31 ms
10,880 KB
testcase_05 AC 31 ms
10,880 KB
testcase_06 AC 41 ms
11,136 KB
testcase_07 AC 31 ms
10,752 KB
testcase_08 AC 97 ms
11,008 KB
testcase_09 AC 1,840 ms
11,008 KB
testcase_10 AC 33 ms
10,624 KB
testcase_11 AC 35 ms
10,752 KB
testcase_12 AC 42 ms
10,752 KB
testcase_13 AC 47 ms
10,880 KB
testcase_14 AC 114 ms
10,880 KB
testcase_15 AC 45 ms
10,880 KB
testcase_16 AC 46 ms
10,752 KB
testcase_17 AC 68 ms
11,008 KB
testcase_18 AC 54 ms
10,880 KB
testcase_19 AC 66 ms
11,008 KB
testcase_20 AC 48 ms
10,880 KB
testcase_21 AC 39 ms
10,880 KB
testcase_22 AC 210 ms
11,136 KB
testcase_23 AC 245 ms
11,008 KB
testcase_24 AC 227 ms
11,136 KB
testcase_25 AC 181 ms
11,136 KB
testcase_26 AC 210 ms
11,008 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):
	if x>gx or y>gy:
		return
	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