結果
| 問題 |
No.8063 幅優先探索
|
| コンテスト | |
| ユーザー |
maspy
|
| 提出日時 | 2020-04-01 21:39:47 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 799 bytes |
| コンパイル時間 | 98 ms |
| コンパイル使用メモリ | 12,928 KB |
| 実行使用メモリ | 56,836 KB |
| 最終ジャッジ日時 | 2024-06-27 10:00:30 |
| 合計ジャッジ時間 | 3,355 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 5 WA * 4 |
ソースコード
#!/usr/bin/ python3.8
import sys
read = sys.stdin.buffer.read
readline = sys.stdin.buffer.readline
readlines = sys.stdin.buffer.readlines
from collections import deque
H, W = map(int, readline().split())
sx, sy = map(int, readline().split())
gx, gy = map(int, readline().split())
# sx = H + 1 - sx
# gx = H + 1 - gx
grid = [1] * (W + 2)
for _ in range(H):
grid += [1] + [1 * (x == '#') for x in readline().rstrip().decode()] + [1]
grid += [1] * (W + 2)
H += 2
W += 2
N = H * W
S = sx * W + sy
G = gx * W + gy
INF = 10 ** 9
dist = [INF] * N
q = deque([S])
dist[S] = 0
dxs = (1, -1, W, -W)
while q:
v = q.popleft()
dw = dist[v] + 1
for dx in dxs:
w = v + dx
if dist[w] <= dw or grid[w]:
continue
q.append(w)
dist[w] = dw
print(dist[G])
maspy