結果

問題 No.34 砂漠の行商人
ユーザー convexineqconvexineq
提出日時 2021-01-17 04:04:27
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 418 ms / 5,000 ms
コード長 576 bytes
コンパイル時間 195 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 146,968 KB
最終ジャッジ日時 2024-11-29 01:56:54
合計ジャッジ時間 4,057 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
53,504 KB
testcase_01 AC 43 ms
53,844 KB
testcase_02 AC 56 ms
64,896 KB
testcase_03 AC 43 ms
53,760 KB
testcase_04 AC 78 ms
76,584 KB
testcase_05 AC 80 ms
76,484 KB
testcase_06 AC 69 ms
68,224 KB
testcase_07 AC 95 ms
78,444 KB
testcase_08 AC 105 ms
79,232 KB
testcase_09 AC 167 ms
89,284 KB
testcase_10 AC 70 ms
76,900 KB
testcase_11 AC 83 ms
77,124 KB
testcase_12 AC 62 ms
71,552 KB
testcase_13 AC 418 ms
146,968 KB
testcase_14 AC 310 ms
116,992 KB
testcase_15 AC 56 ms
65,152 KB
testcase_16 AC 78 ms
76,544 KB
testcase_17 AC 53 ms
62,720 KB
testcase_18 AC 58 ms
66,176 KB
testcase_19 AC 150 ms
87,716 KB
testcase_20 AC 203 ms
96,456 KB
testcase_21 AC 59 ms
66,488 KB
testcase_22 AC 59 ms
67,456 KB
testcase_23 AC 58 ms
65,188 KB
testcase_24 AC 234 ms
101,760 KB
testcase_25 AC 74 ms
76,972 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,v,sy,sx,gy,gx = map(int,input().split())
b = [list(map(int,input().split())) for _ in range(n)]
mv = [[-1]*n for _ in range(n)]
mv[sx-1][sy-1] = v
from collections import deque
q = deque([(0,v,sx-1,sy-1)])
while q:
    dv,v,x,y = q.popleft()
    if x==gx-1 and y==gy-1:
        print(dv)
        exit()
    for nx,ny in [(x+1,y),(x-1,y),(x,y-1),(x,y+1)]:
        if 0 <= nx < n and 0 <= ny < n:
            nv = v - b[nx][ny]
            if nv <= 0: continue
            if mv[nx][ny] < nv:
                mv[nx][ny] = nv
                q.append((dv+1,nv,nx,ny))
print(-1)
0