結果

問題 No.34 砂漠の行商人
ユーザー rlangevinrlangevin
提出日時 2023-09-19 12:31:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 3,358 ms / 5,000 ms
コード長 1,232 bytes
コンパイル時間 200 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 478,844 KB
最終ジャッジ日時 2024-07-05 21:41:28
合計ジャッジ時間 9,065 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
53,760 KB
testcase_01 AC 43 ms
54,656 KB
testcase_02 AC 63 ms
68,736 KB
testcase_03 AC 41 ms
53,632 KB
testcase_04 AC 139 ms
97,988 KB
testcase_05 AC 144 ms
96,572 KB
testcase_06 AC 67 ms
69,504 KB
testcase_07 AC 204 ms
114,364 KB
testcase_08 AC 253 ms
127,036 KB
testcase_09 AC 46 ms
60,672 KB
testcase_10 AC 46 ms
61,056 KB
testcase_11 AC 46 ms
61,056 KB
testcase_12 AC 112 ms
86,536 KB
testcase_13 AC 46 ms
60,928 KB
testcase_14 AC 50 ms
61,184 KB
testcase_15 AC 45 ms
59,776 KB
testcase_16 AC 45 ms
60,544 KB
testcase_17 AC 44 ms
60,928 KB
testcase_18 AC 42 ms
53,760 KB
testcase_19 AC 1,857 ms
318,588 KB
testcase_20 AC 3,358 ms
478,844 KB
testcase_21 AC 65 ms
70,612 KB
testcase_22 AC 47 ms
60,672 KB
testcase_23 AC 46 ms
60,416 KB
testcase_24 AC 46 ms
61,312 KB
testcase_25 AC 282 ms
125,888 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import *
inf = 10 ** 18

N, V, sx, sy, gx, gy = map(int, input().split())
sx, sy, gx, gy = sx-1, sy-1, gx-1, gy-1
d = abs(sx - gx) + abs(sy - gy)
L = []
for i in range(N):
    L.append(list(map(int, input().split())))

if V > d * 9:
    print(d)
    exit()

def f(x, y, v):
    return x + y * N + v * N * N

def g(n):
    v = n // (N * N)
    n %= N * N
    y, x = divmod(n, N)
    return x, y, v 

dx = [1, 0, -1, 0]
dy = [0, 1, 0, -1]
Q = deque([])
dist = defaultdict(lambda:inf)
val = [[-1] * N for i in range(N)]
s =  f(sy, sx, V)
dist[s] = 0
Q.append(s)
x, y, vv = g(s)
val[sy][sx] = V

while Q:
    u = Q.popleft()
    px, py, vv = g(u)
    for k in range(4):
        x = px + dx[k]
        y = py + dy[k]
        if x < 0 or x > N - 1 or y < 0 or y > N - 1:
            continue
        if vv - L[x][y] <= 0:
            continue
        if val[x][y] > vv:
            continue
        v = f(x, y, vv - L[x][y])
        if v in dist:
            continue
        
        dist[v] = dist[u] + 1
        if x == gy and y == gx:
            print(dist[v])
            exit()
        Q.append(v)

ans = inf
for v in range(1, V + 1):
    ans = min(ans, dist[f(gy, gx, v)])

print(ans) if ans != inf else print(-1)
0