結果

問題 No.3063 幅優先探索
ユーザー maspymaspy
提出日時 2020-04-01 21:39:47
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 799 bytes
コンパイル時間 98 ms
コンパイル使用メモリ 12,928 KB
実行使用メモリ 56,836 KB
最終ジャッジ日時 2024-06-27 10:00:30
合計ジャッジ時間 3,355 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,752 KB
testcase_01 AC 29 ms
10,880 KB
testcase_02 AC 31 ms
10,880 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 1,478 ms
56,836 KB
testcase_08 AC 30 ms
10,624 KB
testcase_09 AC 30 ms
10,880 KB
testcase_10 AC 30 ms
10,752 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