結果

問題 No.34 砂漠の行商人
ユーザー chocoruskchocorusk
提出日時 2020-09-09 10:03:34
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 841 bytes
コンパイル時間 470 ms
コンパイル使用メモリ 82,520 KB
実行使用メモリ 827,364 KB
最終ジャッジ日時 2024-12-14 12:15:43
合計ジャッジ時間 35,101 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 MLE -
testcase_01 AC 48 ms
60,992 KB
testcase_02 AC 61 ms
67,660 KB
testcase_03 AC 42 ms
54,068 KB
testcase_04 AC 145 ms
92,936 KB
testcase_05 AC 145 ms
93,180 KB
testcase_06 AC 60 ms
69,204 KB
testcase_07 AC 211 ms
110,752 KB
testcase_08 AC 271 ms
134,224 KB
testcase_09 AC 2,886 ms
398,892 KB
testcase_10 AC 224 ms
127,848 KB
testcase_11 TLE -
testcase_12 AC 110 ms
89,084 KB
testcase_13 TLE -
testcase_14 TLE -
testcase_15 AC 64 ms
72,048 KB
testcase_16 AC 418 ms
140,248 KB
testcase_17 AC 57 ms
67,068 KB
testcase_18 AC 84 ms
81,052 KB
testcase_19 AC 2,102 ms
318,140 KB
testcase_20 AC 3,815 ms
482,428 KB
testcase_21 AC 61 ms
70,552 KB
testcase_22 AC 88 ms
84,456 KB
testcase_23 AC 64 ms
69,448 KB
testcase_24 MLE -
testcase_25 MLE -
権限があれば一括ダウンロードができます

ソースコード

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={}
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 (hxy1 not in d) or 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