結果
問題 | No.3063 幅優先探索 |
ユーザー | maspy |
提出日時 | 2020-04-01 21:38:10 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 795 bytes |
コンパイル時間 | 183 ms |
コンパイル使用メモリ | 82,144 KB |
実行使用メモリ | 112,592 KB |
最終ジャッジ日時 | 2024-06-27 09:52:39 |
合計ジャッジ時間 | 1,594 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 44 ms
53,760 KB |
testcase_01 | AC | 44 ms
54,016 KB |
testcase_02 | AC | 45 ms
53,888 KB |
testcase_03 | WA | - |
testcase_04 | AC | 44 ms
53,760 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | AC | 221 ms
112,592 KB |
testcase_08 | AC | 45 ms
53,884 KB |
testcase_09 | AC | 44 ms
53,760 KB |
testcase_10 | AC | 44 ms
53,888 KB |
ソースコード
#!/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])