結果

問題 No.34 砂漠の行商人
ユーザー yaoshimaxyaoshimax
提出日時 2015-02-15 20:49:43
言語 Python2
(2.7.18)
結果
AC  
実行時間 203 ms / 5,000 ms
コード長 694 bytes
コンパイル時間 787 ms
コンパイル使用メモリ 7,072 KB
実行使用メモリ 7,040 KB
最終ジャッジ日時 2024-06-28 10:05:43
合計ジャッジ時間 3,350 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 13 ms
6,528 KB
testcase_01 AC 13 ms
6,528 KB
testcase_02 AC 16 ms
6,528 KB
testcase_03 AC 13 ms
6,528 KB
testcase_04 AC 39 ms
6,656 KB
testcase_05 AC 46 ms
6,656 KB
testcase_06 AC 32 ms
6,784 KB
testcase_07 AC 89 ms
6,656 KB
testcase_08 AC 105 ms
6,784 KB
testcase_09 AC 79 ms
6,912 KB
testcase_10 AC 37 ms
6,912 KB
testcase_11 AC 59 ms
7,040 KB
testcase_12 AC 22 ms
6,528 KB
testcase_13 AC 203 ms
7,040 KB
testcase_14 AC 200 ms
6,912 KB
testcase_15 AC 16 ms
6,528 KB
testcase_16 AC 34 ms
6,784 KB
testcase_17 AC 16 ms
6,656 KB
testcase_18 AC 17 ms
6,656 KB
testcase_19 AC 90 ms
6,912 KB
testcase_20 AC 138 ms
7,040 KB
testcase_21 AC 20 ms
6,912 KB
testcase_22 AC 23 ms
6,912 KB
testcase_23 AC 17 ms
6,656 KB
testcase_24 AC 155 ms
6,912 KB
testcase_25 AC 32 ms
6,656 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
N,V,Sy,Sx,Gy,Gx = map(int,raw_input().split())
L=[]
for i in range(N):
    line = map(int,raw_input().split())
    L.append(line)

que=deque([(0,Sx-1,Sy-1,V)])

arrived=[[0 for i in range(N)]for j in range(N)]
dxs=[1,0,-1,0]
dys=[0,1,0,-1]
while que:
    dist,x,y,v = que.popleft()
    if arrived[x][y]>v:
        continue
    arrived[x][y]=v
    #print dist,y,x,v
    if (x,y)==(Gx-1,Gy-1):
        print dist
        exit()
    for dx,dy in zip(dxs,dys):
        nx,ny=x+dx,y+dy
        if nx>=0 and ny >= 0 and nx <N and ny <N and arrived[nx][ny]<v-L[nx][ny] :
            arrived[nx][ny]=v-L[nx][ny]
            que.append((dist+1,nx,ny,v-L[nx][ny]))
print -1
0