結果
問題 | No.34 砂漠の行商人 |
ユーザー | Kude |
提出日時 | 2020-09-05 20:42:08 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 885 bytes |
コンパイル時間 | 258 ms |
コンパイル使用メモリ | 82,816 KB |
実行使用メモリ | 276,332 KB |
最終ジャッジ日時 | 2024-05-06 20:07:43 |
合計ジャッジ時間 | 11,054 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 50 ms
52,352 KB |
testcase_01 | AC | 48 ms
59,392 KB |
testcase_02 | AC | 103 ms
76,800 KB |
testcase_03 | AC | 41 ms
52,736 KB |
testcase_04 | AC | 495 ms
85,684 KB |
testcase_05 | AC | 478 ms
86,144 KB |
testcase_06 | AC | 116 ms
77,184 KB |
testcase_07 | AC | 714 ms
90,812 KB |
testcase_08 | AC | 985 ms
100,372 KB |
testcase_09 | AC | 49 ms
59,392 KB |
testcase_10 | AC | 50 ms
60,160 KB |
testcase_11 | AC | 49 ms
60,032 KB |
testcase_12 | AC | 505 ms
87,424 KB |
testcase_13 | AC | 48 ms
60,012 KB |
testcase_14 | AC | 46 ms
60,032 KB |
testcase_15 | AC | 45 ms
58,624 KB |
testcase_16 | AC | 46 ms
59,264 KB |
testcase_17 | AC | 47 ms
59,776 KB |
testcase_18 | AC | 42 ms
52,480 KB |
testcase_19 | TLE | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
ソースコード
from heapq import heappush, heappop 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 shortest_dist = abs(sx - gx) + abs(sy - gy) if v > shortest_dist * 9: print(shortest_dist) exit(0) INF = 10 ** 4 dist = [[[INF for _ in range(v + 1)] for _ in range(n)] for _ in range(n)] dist[sx][sy][v] = 0 q = [(0, sx, sy, v)] while q: d, x, y, vit = heappop(q) if d > dist[x][y][vit]: continue for dx, dy in (1, 0), (0, 1), (-1, 0), (0, -1): nx, ny = x + dx, y + dy if not (0 <= nx < n and 0 <= ny < n): continue nvit = vit - l[nx][ny] nd = d + 1 if nvit > 0 and nd< dist[nx][ny][nvit]: dist[nx][ny][nvit] = nd heappush(q, (nd, nx, ny, nvit)) ans = min(dist[gx][gy]) if ans == INF: ans = -1 print(ans)