結果

問題 No.34 砂漠の行商人
ユーザー yuma25689yuma25689
提出日時 2015-11-28 14:33:31
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 2,850 ms / 5,000 ms
コード長 2,628 bytes
コンパイル時間 84 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 11,520 KB
最終ジャッジ日時 2024-06-28 10:27:13
合計ジャッジ時間 17,160 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
11,136 KB
testcase_01 AC 31 ms
10,752 KB
testcase_02 AC 51 ms
11,008 KB
testcase_03 AC 32 ms
10,880 KB
testcase_04 AC 188 ms
11,136 KB
testcase_05 AC 275 ms
11,136 KB
testcase_06 AC 142 ms
11,008 KB
testcase_07 AC 1,146 ms
11,008 KB
testcase_08 AC 803 ms
11,136 KB
testcase_09 AC 934 ms
11,392 KB
testcase_10 AC 36 ms
10,880 KB
testcase_11 AC 2,850 ms
11,520 KB
testcase_12 AC 70 ms
11,008 KB
testcase_13 AC 2,820 ms
11,520 KB
testcase_14 AC 2,053 ms
11,392 KB
testcase_15 AC 46 ms
11,008 KB
testcase_16 AC 175 ms
11,264 KB
testcase_17 AC 40 ms
11,008 KB
testcase_18 AC 32 ms
11,136 KB
testcase_19 AC 692 ms
11,392 KB
testcase_20 AC 1,139 ms
11,520 KB
testcase_21 AC 429 ms
11,264 KB
testcase_22 AC 74 ms
11,136 KB
testcase_23 AC 45 ms
11,136 KB
testcase_24 AC 1,549 ms
11,520 KB
testcase_25 AC 165 ms
11,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

'''
入力

N V SX SY GX GY
L11 L21 L31 ⋯ LN1
L12 L22 L32 ⋯ LN2
⋯
L1N L2N L3N ⋯ LNN
1行目に、砂漠の1辺の長さを表す整数 N (3≤N≤100)、
太郎君の体力値を表す整数 V (1≤V≤10000)、
太郎君の初期位置を表す整数の組 (SX,SY)(1≤SX,SY≤N)、
次の街の位置を表す整数の組 (GX,GY)(1≤GX,GY≤N)、
がスペース区切りで与えられます。
続くN行に、それぞれの場所の砂漠レベル LXY (0≤LXY≤9) が空白区切りで与えられます。

初期位置(SX,SY)と次の街の位置(GX,GY)は、同じ座標になることはありません。

出力

太郎君が死なずに、最も早く次の街へ着く最小の移動回数。
どうやっても生きてたどり着けない場合は −1 を出力すること。
最後に改行すること。

'''
import sys
import heapq

INF = 1e10

edgeLen,HP,startX,startY,goalX,goalY=map(int, input().split())
damages=[list(map(int, input().split())) for j in range(edgeLen)]

damageSum=0
for y in range(edgeLen):
	for x in range(edgeLen):
		damageSum += damages[y][x]

# print(edgeLen,HP,startX,startY,goalX,goalY)
# print(damageSum)

# 隣接ノード計算用
NextCoords=[(1,0),(0,1),(-1,0),(0,-1)]


if damageSum < HP:
	# 一番近い距離で行けるはず
	print(abs(goalX-startX)+abs(goalY-startY))
	sys.exit(0)


# 考えられる最大の体力
# HP_consider_max = 9*edgeLen + 9*edgeLen

# 座標と残体力に対するコストをメモ化
remainHP_Temp=[ [-1 for x_ in range(edgeLen)] for y_ in range(edgeLen)]
remainHP=[ [-1 for x_ in range(edgeLen)] for y_ in range(edgeLen)]
endOfStatus=[ [False for x_ in range(edgeLen)] for y_ in range(edgeLen)]
# スタート位置を残体力MAXで初期化
remainHP[startY-1][startX-1] = HP

for moveCount in range(1,edgeLen*2+1):
	# 1ループで1進むと見なせば良い?
	for y in range(edgeLen):
		for x in range(edgeLen):
			if remainHP[y][x] == -1:
				# print(x,y,damage,"=INF")
				continue
			for dx,dy in NextCoords:
				to_x,to_y=x+dx,y+dy
				if 0<=to_x<edgeLen and 0<=to_y<edgeLen:
					if 0 < remainHP[y][x] - damages[to_y][to_x] and endOfStatus[to_y][to_x]==False:
						# print( x, y, "=>", to_x, to_y, ":",minCostOfStatusTemp[to_y][to_x][hp - damages[to_y][to_x]] )
						remainHP_Temp[to_y][to_x] = max( remainHP_Temp[to_y][to_x], remainHP[y][x] - damages[to_y][to_x] )

	if 0 < remainHP_Temp[goalY-1][goalX-1]:
		print(moveCount)
		sys.exit(0)

	endOfStatus[y][x]=True

	remainHP = remainHP_Temp #.copy()
	remainHP_Temp=[ [-1 for x_ in range(edgeLen)] for y_ in range(edgeLen)]


# 見つからなかった
print(-1)
0