結果

問題 No.34 砂漠の行商人
ユーザー chocoruskchocorusk
提出日時 2020-09-09 10:00:52
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 833 bytes
コンパイル時間 638 ms
コンパイル使用メモリ 82,508 KB
実行使用メモリ 848,828 KB
最終ジャッジ日時 2024-12-14 12:14:58
合計ジャッジ時間 15,956 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
54,740 KB
testcase_01 AC 48 ms
60,980 KB
testcase_02 AC 59 ms
66,820 KB
testcase_03 AC 43 ms
55,188 KB
testcase_04 AC 88 ms
79,096 KB
testcase_05 AC 90 ms
79,824 KB
testcase_06 AC 63 ms
67,944 KB
testcase_07 AC 106 ms
81,820 KB
testcase_08 AC 122 ms
85,388 KB
testcase_09 MLE -
testcase_10 MLE -
testcase_11 MLE -
testcase_12 AC 89 ms
75,072 KB
testcase_13 AC 2,900 ms
391,404 KB
testcase_14 AC 2,268 ms
360,724 KB
testcase_15 AC 88 ms
146,344 KB
testcase_16 AC 218 ms
236,168 KB
testcase_17 AC 75 ms
119,780 KB
testcase_18 AC 74 ms
81,612 KB
testcase_19 AC 651 ms
143,652 KB
testcase_20 AC 1,160 ms
205,088 KB
testcase_21 AC 61 ms
71,200 KB
testcase_22 AC 94 ms
140,484 KB
testcase_23 AC 138 ms
285,704 KB
testcase_24 MLE -
testcase_25 AC 125 ms
87,916 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
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