結果

問題 No.34 砂漠の行商人
ユーザー roiti46roiti46
提出日時 2015-02-22 18:48:36
言語 Python2
(2.7.18)
結果
AC  
実行時間 186 ms / 5,000 ms
コード長 579 bytes
コンパイル時間 149 ms
コンパイル使用メモリ 6,944 KB
実行使用メモリ 6,656 KB
最終ジャッジ日時 2024-06-28 10:14:03
合計ジャッジ時間 2,792 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 11 ms
6,272 KB
testcase_01 AC 11 ms
6,144 KB
testcase_02 AC 14 ms
6,144 KB
testcase_03 AC 11 ms
6,016 KB
testcase_04 AC 34 ms
6,272 KB
testcase_05 AC 41 ms
6,144 KB
testcase_06 AC 29 ms
6,272 KB
testcase_07 AC 83 ms
6,272 KB
testcase_08 AC 96 ms
6,272 KB
testcase_09 AC 72 ms
6,528 KB
testcase_10 AC 35 ms
6,400 KB
testcase_11 AC 54 ms
6,528 KB
testcase_12 AC 19 ms
6,144 KB
testcase_13 AC 186 ms
6,656 KB
testcase_14 AC 186 ms
6,656 KB
testcase_15 AC 14 ms
6,272 KB
testcase_16 AC 31 ms
6,272 KB
testcase_17 AC 14 ms
6,144 KB
testcase_18 AC 14 ms
6,144 KB
testcase_19 AC 84 ms
6,528 KB
testcase_20 AC 126 ms
6,528 KB
testcase_21 AC 17 ms
6,400 KB
testcase_22 AC 20 ms
6,272 KB
testcase_23 AC 14 ms
6,144 KB
testcase_24 AC 145 ms
6,656 KB
testcase_25 AC 31 ms
6,272 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

dxy = zip([1,0,-1,0],[0,1,0,-1])
N,V,Sx,Sy,Gx,Gy = map(int,raw_input().split())
Sx,Sy,Gx,Gy = Sx-1,Sy-1,Gx-1,Gy-1
L = [map(int,raw_input().split()) for i in xrange(N)]
HP = [[0]*N for i in xrange(N)]
que = [[Sx,Sy,V,0]]
while que:
    x,y,v,d = que.pop(0)
    if (x,y) == (Gx,Gy):
        print d
        break
    if HP[y][x] > v: continue
    HP[y][x] = v
    for dx,dy in dxy:
        nx,ny = x+dx,y+dy
        if 0 <= nx < N and 0 <= ny < N and v-L[ny][nx] > HP[ny][nx]:
            HP[ny][nx] = v-L[ny][nx]
            que.append([nx,ny,v-L[ny][nx],d+1])
else:
    print -1
0