結果

問題 No.34 砂漠の行商人
ユーザー TawaraTawara
提出日時 2015-12-30 00:15:09
言語 Python2
(2.7.18)
結果
AC  
実行時間 169 ms / 5,000 ms
コード長 590 bytes
コンパイル時間 53 ms
コンパイル使用メモリ 7,040 KB
実行使用メモリ 7,424 KB
最終ジャッジ日時 2024-06-28 10:27:30
合計ジャッジ時間 2,449 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 15 ms
6,912 KB
testcase_01 AC 14 ms
6,784 KB
testcase_02 AC 17 ms
6,784 KB
testcase_03 AC 15 ms
6,912 KB
testcase_04 AC 35 ms
6,912 KB
testcase_05 AC 43 ms
6,912 KB
testcase_06 AC 30 ms
6,784 KB
testcase_07 AC 77 ms
7,040 KB
testcase_08 AC 90 ms
6,912 KB
testcase_09 AC 68 ms
7,040 KB
testcase_10 AC 36 ms
7,040 KB
testcase_11 AC 53 ms
7,168 KB
testcase_12 AC 22 ms
7,040 KB
testcase_13 AC 167 ms
7,424 KB
testcase_14 AC 169 ms
7,424 KB
testcase_15 AC 17 ms
7,040 KB
testcase_16 AC 31 ms
6,784 KB
testcase_17 AC 17 ms
6,784 KB
testcase_18 AC 18 ms
6,912 KB
testcase_19 AC 78 ms
7,168 KB
testcase_20 AC 116 ms
7,296 KB
testcase_21 AC 20 ms
6,912 KB
testcase_22 AC 23 ms
7,168 KB
testcase_23 AC 17 ms
7,040 KB
testcase_24 AC 132 ms
7,296 KB
testcase_25 AC 31 ms
7,040 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from Queue import deque
N,V,Sx,Sy,Gx,Gy = map(int,raw_input().split())
Sx -= 1; Sy -= 1; Gx -= 1; Gy -= 1
L = [map(int,raw_input().split()) for i in xrange(N)]
dxy = ((1,0),(0,1),(-1,0),(0,-1))
Q = deque([(Sx,Sy,V,0)])
visited = [[0]*N for i in xrange(N)]
visited[Sy][Sx] = V
while Q:
	hx,hy,v,c = Q.popleft()
	if (hx,hy) == (Gx,Gy): print c; break
	if v < visited[hy][hx]: continue
	for dx,dy in dxy:
		nx = hx + dx; ny = hy + dy
		if 0 <= nx < N and 0 <= ny < N and v - L[ny][nx] > visited[ny][nx]:
			visited[ny][nx] = v - L[ny][nx]
			Q.append((nx,ny,v - L[ny][nx],c+1))
else:
	print -1
0