AdventOfCode/2019/day20.py

184 lines
6.4 KiB
Python
Raw Normal View History

2019-12-20 13:39:21 +01:00
from collections import defaultdict
from string import ascii_uppercase
from grid import Grid
2019-12-20 15:57:20 +01:00
EX1 = [
" A ",
" A ",
" #######.######### ",
" #######.........# ",
" #######.#######.# ",
" #######.#######.# ",
" #######.#######.# ",
" ##### B ###.# ",
"BC...## C ###.# ",
" ##.## ###.# ",
" ##...DE F ###.# ",
" ##### G ###.# ",
" #########.#####.# ",
"DE..#######...###.# ",
" #.#########.###.# ",
"FG..#########.....# ",
" ###########.##### ",
" Z ",
" Z ",
]
EX2 = [
" Z L X W C ",
" Z P Q B K ",
" ###########.#.#.#.#######.############### ",
" #...#.......#.#.......#.#.......#.#.#...# ",
" ###.#.#.#.#.#.#.#.###.#.#.#######.#.#.### ",
" #.#...#.#.#...#.#.#...#...#...#.#.......# ",
" #.###.#######.###.###.#.###.###.#.####### ",
" #...#.......#.#...#...#.............#...# ",
" #.#########.#######.#.#######.#######.### ",
" #...#.# F R I Z #.#.#.# ",
" #.###.# D E C H #.#.#.# ",
" #.#...# #...#.# ",
" #.###.# #.###.# ",
" #.#....OA WB..#.#..ZH",
" #.###.# #.#.#.# ",
"CJ......# #.....# ",
" ####### ####### ",
" #.#....CK #......IC",
" #.###.# #.###.# ",
" #.....# #...#.# ",
" ###.### #.#.#.# ",
"XF....#.# RF..#.#.# ",
" #####.# ####### ",
" #......CJ NM..#...# ",
" ###.#.# #.###.# ",
"RE....#.# #......RF",
" ###.### X X L #.#.#.# ",
" #.....# F Q P #.#.#.# ",
" ###.###########.###.#######.#########.### ",
" #.....#...#.....#.......#...#.....#.#...# ",
" #####.#.###.#######.#######.###.###.#.#.# ",
" #.......#.......#.#.#.#.#...#...#...#.#.# ",
" #####.###.#####.#.#.#.#.###.###.#.###.### ",
" #.......#.....#.#...#...............#...# ",
" #############.#.#.###.################### ",
" A O F N ",
" A A D M " ,
]
2019-12-20 13:39:21 +01:00
def main():
with open("day20.txt") as input_file:
lines = [l.rstrip() for l in input_file.readlines()]
2019-12-20 15:57:20 +01:00
lines = EX2
# Part 1
maze = Maze(lines)
maze.find_portals()
maze.dumb_print()
min_steps = maze.count_min_steps(maze.entry, maze.exit)
print("Min steps:", min_steps)
2019-12-20 13:39:21 +01:00
2019-12-20 15:57:20 +01:00
# Part 2
maze = Maze(lines, recurse=True)
2019-12-20 13:39:21 +01:00
maze.find_portals()
maze.dumb_print()
min_steps = maze.count_min_steps(maze.entry, maze.exit)
print("Min steps:", min_steps)
class Maze(Grid):
TILE_PATH = "."
TILE_WALL = "#"
ENTRY_DG = "AA"
EXIT_DG = "ZZ"
2019-12-20 15:57:20 +01:00
def __init__(self, lines, recurse=False):
super().__init__(value_factory=str, lines=lines)
2019-12-20 13:39:21 +01:00
self.entry = None
self.exit = None
self.portals = {}
2019-12-20 15:57:20 +01:00
self.recurse = recurse
self.portal_is_outer = {}
self.height = len(lines)
self.width = max(len(line) for line in lines)
2019-12-20 13:39:21 +01:00
def find_portals(self):
portals = defaultdict(list)
for x, y, v in list(self.values_gen()):
if v in ascii_uppercase:
rv = self.getv(x + 1, y)
if rv and rv in ascii_uppercase:
rrv = self.getv(x + 2, y)
portal_pos = (x + 2, y) if rrv == Maze.TILE_PATH else (x - 1, y)
portals[v + rv].append(portal_pos)
2019-12-20 15:57:20 +01:00
self.portal_is_outer[portal_pos] = x == 0 or x == self.width - 2
2019-12-20 13:39:21 +01:00
continue
dv = self.getv(x, y + 1)
if dv and dv in ascii_uppercase:
ddv = self.getv(x, y + 2)
portal_pos = (x, y + 2) if ddv == Maze.TILE_PATH else (x, y - 1)
portals[v + dv].append(portal_pos)
2019-12-20 15:57:20 +01:00
self.portal_is_outer[portal_pos] = y == 0 or y == self.height - 2
2019-12-20 13:39:21 +01:00
for n, p in portals.items():
if n == "AA":
self.entry = p[0]
elif n == "ZZ":
self.exit = p[0]
else:
self.portals[p[0]] = p[1]
self.portals[p[1]] = p[0]
def dumb_print(self):
for y, row in self.g.items():
for x, v in row.items():
if (x, y) in self.portals:
2019-12-20 15:57:20 +01:00
v = "o" if self.portal_is_outer[(x, y)] else "i"
2019-12-20 13:39:21 +01:00
if (x, y) in (self.entry, self.exit):
v = ""
print(v, end="")
print()
def bfs(self, start, end):
2019-12-20 15:57:20 +01:00
discovered = defaultdict(lambda: Grid(value_factory=bool))
discovered[0].setv(start[0], end[1], True)
2019-12-20 13:39:21 +01:00
parents = {}
2019-12-20 15:57:20 +01:00
q = [(start, 0)]
2019-12-20 13:39:21 +01:00
while q:
2019-12-20 15:57:20 +01:00
pos, level = q.pop(0)
if pos == end and (not self.recurse or level == 0):
2019-12-20 13:39:21 +01:00
return parents
nears = self.near_objects(pos)
2019-12-20 15:57:20 +01:00
is_portal = pos in self.portals
if is_portal:
nears[self.portals[pos]] = Maze.TILE_PATH
2019-12-20 13:39:21 +01:00
for near_pos, near_tile in nears.items():
if near_tile != Maze.TILE_PATH:
continue
2019-12-20 15:57:20 +01:00
near_level = level
if self.recurse and is_portal and near_pos == self.portals[pos]:
near_level += -1 if self.portal_is_outer[pos] else 1
if discovered[near_level].getv(near_pos[0], near_pos[1]):
2019-12-20 13:39:21 +01:00
continue
2019-12-20 15:57:20 +01:00
discovered[near_level].setv(near_pos[0], near_pos[1], True)
parents[(near_pos, near_level)] = (pos, level)
q.append((near_pos, near_level))
2019-12-20 13:39:21 +01:00
return None
def count_min_steps(self, start, end):
parents = self.bfs(start, end)
count = 0
2019-12-20 15:57:20 +01:00
pos = (end, 0)
while pos != (start, 0):
2019-12-20 13:39:21 +01:00
count += 1
2019-12-20 15:57:20 +01:00
parent = parents[pos]
if pos[1] != parent[1]:
2019-12-20 13:39:21 +01:00
count += 1
2019-12-20 15:57:20 +01:00
pos = parent
2019-12-20 13:39:21 +01:00
return count
if __name__ == "__main__":
main()