結果

問題 No.34 砂漠の行商人
ユーザー chocoruskchocorusk
提出日時 2020-09-09 10:19:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,861 ms / 5,000 ms
コード長 848 bytes
コンパイル時間 371 ms
コンパイル使用メモリ 82,252 KB
実行使用メモリ 328,156 KB
最終ジャッジ日時 2024-12-14 12:35:46
合計ジャッジ時間 14,022 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
54,504 KB
testcase_01 AC 48 ms
61,012 KB
testcase_02 AC 58 ms
66,104 KB
testcase_03 AC 42 ms
55,272 KB
testcase_04 AC 88 ms
79,208 KB
testcase_05 AC 88 ms
79,872 KB
testcase_06 AC 58 ms
66,628 KB
testcase_07 AC 103 ms
81,672 KB
testcase_08 AC 120 ms
85,328 KB
testcase_09 AC 851 ms
198,852 KB
testcase_10 AC 153 ms
217,280 KB
testcase_11 AC 1,519 ms
279,004 KB
testcase_12 AC 72 ms
75,512 KB
testcase_13 AC 2,861 ms
328,156 KB
testcase_14 AC 2,264 ms
278,996 KB
testcase_15 AC 73 ms
108,652 KB
testcase_16 AC 179 ms
118,916 KB
testcase_17 AC 72 ms
119,380 KB
testcase_18 AC 71 ms
78,412 KB
testcase_19 AC 605 ms
144,120 KB
testcase_20 AC 1,131 ms
205,300 KB
testcase_21 AC 60 ms
71,352 KB
testcase_22 AC 91 ms
139,884 KB
testcase_23 AC 79 ms
122,908 KB
testcase_24 AC 1,480 ms
279,040 KB
testcase_25 AC 123 ms
88,112 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
read=sys.stdin.buffer.read
readline=sys.stdin.buffer.readline
readlines=sys.stdin.buffer.readlines

n, v, sx, sy, gx, gy=map(int, readline().split())
l=list(map(int, read().split()))
sx-=1
sy-=1
gx-=1
gy-=1
INF=10**5
v=min(v, 1800)
d=[INF]*(n*n*v)
d[sy*n+sx]=0
from collections import deque
que=deque()
que.append(sy*n+sx)
while que:
    hxy=que.popleft()
    h, xy=divmod(hxy, n*n)
    x, y=divmod(xy, n)
    for dx, dy in ((1, 0), (-1, 0), (0, 1), (0, -1)):
        x1, y1=x+dx, y+dy
        if x1<0 or x1>=n or y1<0 or y1>=n:
            continue
        xy1=x1*n+y1
        h1=l[xy1]+h
        if h1>=v:
            continue
        hxy1=h1*n*n+xy1
        if d[hxy1]>d[hxy]+1:
            d[hxy1]=d[hxy]+1
            if x1==gy and y1==gx:
                print(d[hxy1])
                exit()
            que.append(hxy1)
print(-1)
0