結果

問題 No.34 砂漠の行商人
ユーザー chocoruskchocorusk
提出日時 2020-09-09 10:29:20
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 259 ms / 5,000 ms
コード長 812 bytes
コンパイル時間 311 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 91,328 KB
最終ジャッジ日時 2024-12-14 13:07:31
合計ジャッジ時間 3,634 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
54,792 KB
testcase_01 AC 42 ms
54,720 KB
testcase_02 AC 52 ms
64,996 KB
testcase_03 AC 38 ms
55,852 KB
testcase_04 AC 66 ms
70,444 KB
testcase_05 AC 70 ms
71,520 KB
testcase_06 AC 57 ms
65,104 KB
testcase_07 AC 85 ms
76,592 KB
testcase_08 AC 90 ms
76,836 KB
testcase_09 AC 124 ms
80,236 KB
testcase_10 AC 61 ms
69,832 KB
testcase_11 AC 73 ms
76,532 KB
testcase_12 AC 62 ms
68,496 KB
testcase_13 AC 259 ms
91,328 KB
testcase_14 AC 207 ms
87,120 KB
testcase_15 AC 61 ms
65,012 KB
testcase_16 AC 68 ms
72,448 KB
testcase_17 AC 51 ms
62,088 KB
testcase_18 AC 57 ms
64,696 KB
testcase_19 AC 109 ms
76,960 KB
testcase_20 AC 139 ms
80,188 KB
testcase_21 AC 53 ms
66,188 KB
testcase_22 AC 56 ms
67,108 KB
testcase_23 AC 51 ms
66,192 KB
testcase_24 AC 158 ms
83,792 KB
testcase_25 AC 65 ms
69,848 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)
hmn=[v]*(n*n)
hmn[sy*n+sx]=0
from collections import deque
que=deque()
que.append((sy*n+sx, 0))
while que:
    hxy, d=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
        hmn[xy1]=h1
        if x1==gy and y1==gx:
            print(d+1)
            exit()
        que.append((hxy1, d+1))
print(-1)
0