結果
問題 | No.34 砂漠の行商人 |
ユーザー | 👑 rin204 |
提出日時 | 2022-07-10 16:57:35 |
言語 | PyPy3 (7.3.15) |
結果 |
MLE
|
実行時間 | - |
コード長 | 936 bytes |
コンパイル時間 | 179 ms |
コンパイル使用メモリ | 82,492 KB |
実行使用メモリ | 752,200 KB |
最終ジャッジ日時 | 2024-06-11 06:18:56 |
合計ジャッジ時間 | 11,514 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 42 ms
53,760 KB |
testcase_01 | AC | 48 ms
61,312 KB |
testcase_02 | AC | 72 ms
70,528 KB |
testcase_03 | AC | 42 ms
54,144 KB |
testcase_04 | AC | 142 ms
96,660 KB |
testcase_05 | AC | 145 ms
97,704 KB |
testcase_06 | AC | 74 ms
70,528 KB |
testcase_07 | AC | 177 ms
116,244 KB |
testcase_08 | AC | 252 ms
137,216 KB |
testcase_09 | AC | 2,922 ms
406,472 KB |
testcase_10 | AC | 259 ms
133,132 KB |
testcase_11 | MLE | - |
testcase_12 | AC | 316 ms
89,516 KB |
testcase_13 | MLE | - |
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 = {} 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 f(nx, ny, nv) not in dist: 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)