結果

問題 No.3063 幅優先探索
ユーザー maspymaspy
提出日時 2020-04-01 21:39:47
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 799 bytes
コンパイル時間 130 ms
コンパイル使用メモリ 10,784 KB
実行使用メモリ 54,376 KB
最終ジャッジ日時 2023-09-09 17:19:27
合計ジャッジ時間 3,295 ms
ジャッジサーバーID
(参考情報)
judge14 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 18 ms
8,448 KB
testcase_01 AC 19 ms
8,620 KB
testcase_02 AC 20 ms
8,584 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 1,396 ms
54,376 KB
testcase_08 AC 19 ms
8,492 KB
testcase_09 AC 18 ms
8,464 KB
testcase_10 AC 19 ms
8,464 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/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])
0