Generic Dijkstra for day 12.
This commit is contained in:
parent
291b188238
commit
726a6aecac
131
2022/day12.py
131
2022/day12.py
@ -2,77 +2,75 @@
|
|||||||
|
|
||||||
import heapq
|
import heapq
|
||||||
import sys
|
import sys
|
||||||
from typing import Iterator
|
from typing import Callable, Iterator, TypeVar
|
||||||
|
|
||||||
|
Node = TypeVar("Node")
|
||||||
|
|
||||||
|
|
||||||
def dijkstra(
|
def dijkstra(
|
||||||
start: tuple[int, int], end: tuple[int, int], grid: list[list[int]]
|
start: Node,
|
||||||
) -> list[tuple[int, int]] | None:
|
end: Node,
|
||||||
n_rows = len(grid)
|
neighbors: Callable[[Node], Iterator[Node]],
|
||||||
n_cols = len(grid[0])
|
cost: Callable[[Node, Node], float],
|
||||||
|
heuristic: Callable[[Node, Node], float] | None = None,
|
||||||
|
) -> list[Node] | None:
|
||||||
|
|
||||||
def heuristic(row: int, col: int) -> int:
|
queue: list[tuple[tuple[float, float, float], Node]] = []
|
||||||
return abs(end[0] - row) + abs(end[1] - col)
|
|
||||||
|
|
||||||
def neighbors(row: int, col: int) -> Iterator[tuple[int, int]]:
|
visited: set[Node] = set()
|
||||||
for n_row, n_col in (
|
lengths: dict[Node, float] = {start: 0}
|
||||||
(c_row - 1, c_col),
|
parents: dict[Node, Node] = {}
|
||||||
(c_row + 1, c_col),
|
|
||||||
(c_row, c_col - 1),
|
|
||||||
(c_row, c_col + 1),
|
|
||||||
):
|
|
||||||
|
|
||||||
if not (n_row >= 0 and n_row < n_rows and n_col >= 0 and n_col < n_cols):
|
if heuristic is None:
|
||||||
continue
|
|
||||||
|
|
||||||
if grid[n_row][n_col] > grid[c_row][c_col] + 1:
|
def priority(node: Node):
|
||||||
continue
|
c = lengths[node]
|
||||||
|
return (c, c, c)
|
||||||
|
|
||||||
yield n_row, n_col
|
else:
|
||||||
|
|
||||||
queue: list[tuple[tuple[int, int], tuple[int, int]]] = []
|
def priority(node: Node):
|
||||||
|
assert heuristic is not None
|
||||||
|
h = heuristic(node, end)
|
||||||
|
c = lengths[node]
|
||||||
|
return (h + c, h, c)
|
||||||
|
|
||||||
visited: set[tuple[int, int]] = set()
|
heapq.heappush(queue, (priority(start), start))
|
||||||
lengths: dict[tuple[int, int], int] = {}
|
|
||||||
parents: dict[tuple[int, int], tuple[int, int]] = {}
|
|
||||||
|
|
||||||
heapq.heappush(queue, ((heuristic(start[0], start[1]), 0), start))
|
|
||||||
|
|
||||||
while queue and (end not in visited):
|
while queue and (end not in visited):
|
||||||
(_, length), (c_row, c_col) = heapq.heappop(queue)
|
(_, _, length), current = heapq.heappop(queue)
|
||||||
|
|
||||||
visited.add((c_row, c_col))
|
if current in visited:
|
||||||
|
|
||||||
for n_row, n_col in neighbors(c_row, c_col):
|
|
||||||
|
|
||||||
if (n_row, n_col) in visited:
|
|
||||||
continue
|
continue
|
||||||
|
|
||||||
if length + 1 < lengths.get((n_row, n_col), n_rows * n_cols):
|
visited.add(current)
|
||||||
lengths[n_row, n_col] = length + 1
|
|
||||||
parents[n_row, n_col] = (c_row, c_col)
|
|
||||||
|
|
||||||
heapq.heappush(
|
for neighbor in neighbors(current):
|
||||||
queue,
|
|
||||||
(
|
if neighbor in visited:
|
||||||
(heuristic(n_row, n_col) + length + 1, length + 1),
|
continue
|
||||||
(n_row, n_col),
|
|
||||||
),
|
neighbor_cost = length + cost(current, neighbor)
|
||||||
)
|
|
||||||
|
if neighbor_cost < lengths.get(neighbor, float("inf")):
|
||||||
|
lengths[neighbor] = length + 1
|
||||||
|
parents[neighbor] = current
|
||||||
|
|
||||||
|
heapq.heappush(queue, (priority(neighbor), neighbor))
|
||||||
|
|
||||||
if end not in visited:
|
if end not in visited:
|
||||||
return None
|
return None
|
||||||
|
|
||||||
path: list[tuple[int, int]] = [end]
|
path: list[Node] = [end]
|
||||||
|
|
||||||
while path[-1] != start:
|
while path[-1] is not start:
|
||||||
path.append(parents[path[-1]])
|
path.append(parents[path[-1]])
|
||||||
|
|
||||||
return list(reversed(path))
|
return list(reversed(path))
|
||||||
|
|
||||||
|
|
||||||
def print_path(path: list[tuple[int, int]], n_rows: int, n_cols: int) -> None:
|
def print_path(path: list[tuple[int, int]], n_rows: int, n_cols: int) -> None:
|
||||||
_, end = path[0], path[-1]
|
end = path[-1]
|
||||||
|
|
||||||
graph = [["." for _c in range(n_cols)] for _r in range(n_rows)]
|
graph = [["." for _c in range(n_cols)] for _r in range(n_rows)]
|
||||||
graph[end[0]][end[1]] = "E"
|
graph[end[0]][end[1]] = "E"
|
||||||
@ -119,7 +117,39 @@ for i_row, row in enumerate(grid):
|
|||||||
grid[start[0]][start[1]] = 0
|
grid[start[0]][start[1]] = 0
|
||||||
grid[end[0]][end[1]] = ord("z") - ord("a")
|
grid[end[0]][end[1]] = ord("z") - ord("a")
|
||||||
|
|
||||||
path = dijkstra(start, end, grid)
|
n_rows = len(grid)
|
||||||
|
n_cols = len(grid[0])
|
||||||
|
|
||||||
|
|
||||||
|
def heuristic(lhs: tuple[int, int], rhs: tuple[int, int]) -> float:
|
||||||
|
return abs(lhs[0] - rhs[0]) + abs(lhs[1] - rhs[1])
|
||||||
|
|
||||||
|
|
||||||
|
def neighbors(node: tuple[int, int]) -> Iterator[tuple[int, int]]:
|
||||||
|
c_row, c_col = node
|
||||||
|
for n_row, n_col in (
|
||||||
|
(c_row - 1, c_col),
|
||||||
|
(c_row + 1, c_col),
|
||||||
|
(c_row, c_col - 1),
|
||||||
|
(c_row, c_col + 1),
|
||||||
|
):
|
||||||
|
|
||||||
|
if not (n_row >= 0 and n_row < n_rows and n_col >= 0 and n_col < n_cols):
|
||||||
|
continue
|
||||||
|
|
||||||
|
if grid[n_row][n_col] > grid[c_row][c_col] + 1:
|
||||||
|
continue
|
||||||
|
|
||||||
|
yield n_row, n_col
|
||||||
|
|
||||||
|
|
||||||
|
path = dijkstra(
|
||||||
|
start=start,
|
||||||
|
end=end,
|
||||||
|
neighbors=neighbors,
|
||||||
|
cost=lambda lhs, rhs: 1,
|
||||||
|
heuristic=heuristic,
|
||||||
|
)
|
||||||
assert path is not None
|
assert path is not None
|
||||||
|
|
||||||
print_path(path, n_rows=len(grid), n_cols=len(grid[0]))
|
print_path(path, n_rows=len(grid), n_cols=len(grid[0]))
|
||||||
@ -130,6 +160,15 @@ print(f"answer 1 is {answer_1}")
|
|||||||
answer_2 = min(
|
answer_2 = min(
|
||||||
len(path) - 1
|
len(path) - 1
|
||||||
for start in start_s
|
for start in start_s
|
||||||
if (path := dijkstra(start, end, grid)) is not None
|
if (
|
||||||
|
path := dijkstra(
|
||||||
|
start=start,
|
||||||
|
end=end,
|
||||||
|
neighbors=neighbors,
|
||||||
|
cost=lambda lhs, rhs: 1,
|
||||||
|
heuristic=heuristic,
|
||||||
|
)
|
||||||
|
)
|
||||||
|
is not None
|
||||||
)
|
)
|
||||||
print(f"answer 2 is {answer_2}")
|
print(f"answer 2 is {answer_2}")
|
||||||
|
Loading…
Reference in New Issue
Block a user