結果

問題 No.3063 幅優先探索
ユーザー maspymaspy
提出日時 2020-04-01 21:38:10
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 795 bytes
コンパイル時間 417 ms
コンパイル使用メモリ 87,016 KB
実行使用メモリ 112,868 KB
最終ジャッジ日時 2023-09-09 17:11:12
合計ジャッジ時間 2,840 ms
ジャッジサーバーID
(参考情報)
judge11 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 92 ms
71,320 KB
testcase_01 AC 92 ms
71,660 KB
testcase_02 AC 91 ms
71,800 KB
testcase_03 WA -
testcase_04 AC 93 ms
71,648 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 253 ms
112,676 KB
testcase_08 AC 93 ms
71,784 KB
testcase_09 AC 92 ms
71,660 KB
testcase_10 AC 91 ms
71,412 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