結果

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

テストケース

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

ソースコード

diff #

from Queue import deque
I=lambda:map(int,raw_input().split())
N,V,Sx,Sy,Gx,Gy=I();Sx-=1;Sy-=1;Gx-=1;Gy-=1
L=[I()for i in xrange(N)];dxy=((1,0),(0,1),(-1,0),(0,-1))
Vs=[[0]*N for i in xrange(N)];Vs[Sy][Sx]=V;Q=deque([(Sx,Sy,V,0)])
while Q:
	hx,hy,v,c=Q.popleft()
	if(hx,hy)==(Gx,Gy):print c;break
	if v<Vs[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]>Vs[ny][nx]:
			Vs[ny][nx]=v-L[ny][nx]
			Q.append((nx,ny,v-L[ny][nx],c+1))
else:print -1
0