結果
問題 | No.34 砂漠の行商人 |
ユーザー | 👑 rin204 |
提出日時 | 2022-07-10 16:56:54 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 952 bytes |
コンパイル時間 | 245 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 19,708 KB |
最終ジャッジ日時 | 2024-06-11 06:18:36 |
合計ジャッジ時間 | 12,596 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 29 ms
17,820 KB |
testcase_01 | AC | 32 ms
10,752 KB |
testcase_02 | AC | 70 ms
10,880 KB |
testcase_03 | AC | 32 ms
11,008 KB |
testcase_04 | AC | 842 ms
13,696 KB |
testcase_05 | AC | 879 ms
14,336 KB |
testcase_06 | AC | 77 ms
10,880 KB |
testcase_07 | AC | 1,458 ms
16,064 KB |
testcase_08 | AC | 1,975 ms
19,708 KB |
testcase_09 | TLE | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
ソースコード
from collections import deque n, v, sy, sx, gy, gx = map(int, input().split()) L = [list(map(int, input().split())) for _ in range(n)] sx -= 1 sy -= 1 gx -= 1 gy -= 1 dist = [-1] * (n * n * v) def f(i, j, k): return (i * n + j) * v + k dist[f(sx, sy, v - 1)] = 0 queue = deque() queue.append(f(sx, sy, v - 1)) directions = [(0, 1), (0, -1), (1, 0), (-1, 0)] while queue: tmp = queue.popleft() x = tmp // (n * v) tmp -= x * n * v y = tmp // v vv = tmp - y * v for dx, dy in directions: nx = x + dx ny = y + dy if nx == -1 or nx == n or ny == -1 or ny == n: continue nv = vv - L[nx][ny] if nv < 0: continue if dist[f(nx, ny, nv)] == -1: if nx == gx and ny == gy: print(dist[f(x, y, vv)] + 1) exit() dist[f(nx, ny, nv)] = dist[f(x, y, vv)] + 1 queue.append(f(nx, ny, nv)) print(-1)