結果

問題 No.34 砂漠の行商人
ユーザー chocoruskchocorusk
提出日時 2020-09-09 10:22:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 392 ms / 5,000 ms
コード長 908 bytes
コンパイル時間 206 ms
コンパイル使用メモリ 82,400 KB
実行使用メモリ 233,028 KB
最終ジャッジ日時 2024-05-08 09:42:20
合計ジャッジ時間 4,298 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
54,632 KB
testcase_01 AC 40 ms
54,180 KB
testcase_02 AC 52 ms
64,892 KB
testcase_03 AC 42 ms
54,720 KB
testcase_04 AC 66 ms
72,852 KB
testcase_05 AC 72 ms
75,536 KB
testcase_06 AC 55 ms
66,220 KB
testcase_07 AC 86 ms
81,948 KB
testcase_08 AC 94 ms
85,180 KB
testcase_09 AC 169 ms
161,444 KB
testcase_10 AC 116 ms
209,948 KB
testcase_11 AC 130 ms
214,836 KB
testcase_12 AC 61 ms
69,644 KB
testcase_13 AC 392 ms
233,028 KB
testcase_14 AC 311 ms
219,396 KB
testcase_15 AC 68 ms
106,536 KB
testcase_16 AC 81 ms
109,936 KB
testcase_17 AC 68 ms
116,460 KB
testcase_18 AC 62 ms
74,060 KB
testcase_19 AC 134 ms
115,452 KB
testcase_20 AC 184 ms
149,268 KB
testcase_21 AC 56 ms
70,684 KB
testcase_22 AC 85 ms
137,472 KB
testcase_23 AC 73 ms
121,556 KB
testcase_24 AC 254 ms
207,296 KB
testcase_25 AC 67 ms
80,964 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
hmn=[v]*(n*n)
hmn[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>=hmn[xy1]:
            continue
        hxy1=h1*n*n+xy1
        if d[hxy1]>d[hxy]+1:
            hmn[xy1]=h1
            d[hxy1]=d[hxy]+1
            if x1==gy and y1==gx:
                print(d[hxy1])
                exit()
            que.append(hxy1)
print(-1)
0