2022-11-10 21:01:24 -08:00
|
|
|
#include <algorithm>
|
2022-11-28 09:20:30 -08:00
|
|
|
#include <bitset>
|
|
|
|
#include <cctype>
|
2022-11-10 21:01:24 -08:00
|
|
|
#include <cstdint>
|
|
|
|
#include <fstream>
|
2022-11-28 09:20:30 -08:00
|
|
|
#include <iomanip>
|
|
|
|
#include <iostream>
|
2022-11-10 21:01:24 -08:00
|
|
|
#include <iterator>
|
2022-11-28 09:20:30 -08:00
|
|
|
#include <map>
|
|
|
|
#include <queue>
|
|
|
|
#include <queue>
|
2022-11-10 21:01:24 -08:00
|
|
|
#include <set>
|
2022-11-28 09:20:30 -08:00
|
|
|
#include <sstream>
|
|
|
|
#include <stdexcept>
|
2022-11-10 21:01:24 -08:00
|
|
|
#include <string>
|
|
|
|
#include <tuple>
|
2022-11-28 09:20:30 -08:00
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
#include <doctest.h>
|
2022-11-10 21:01:24 -08:00
|
|
|
|
|
|
|
#include <aocpp/Startup.hpp>
|
|
|
|
#include <aocpp/Coord.hpp>
|
2022-11-11 21:39:36 -08:00
|
|
|
#include <aocpp/Grid.hpp>
|
2022-11-10 21:01:24 -08:00
|
|
|
|
|
|
|
using namespace aocpp;
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
|
|
|
|
Coord(* const directions[4])(Coord) = {Up, Down, Left, Right};
|
|
|
|
|
|
|
|
using Name = std::string;
|
|
|
|
using Portals = std::map<std::string, Coord>;
|
|
|
|
using Distances = std::map<Name,std::vector<std::pair<Name, std::int64_t>>>;
|
|
|
|
|
2022-11-11 21:39:36 -08:00
|
|
|
auto FindPortals(Grid const& grid) -> Portals {
|
2022-11-10 21:01:24 -08:00
|
|
|
Portals portals;
|
|
|
|
|
2022-11-28 09:20:50 -08:00
|
|
|
std::int64_t w = grid.Cols();
|
|
|
|
std::int64_t h = grid.Rows();
|
2022-11-10 21:01:24 -08:00
|
|
|
|
|
|
|
for (std::int64_t x = 1; x < w-1; x++) {
|
|
|
|
for (std::int64_t y = 1; y < h-1; y++) {
|
|
|
|
Coord const c = {x,y};
|
2022-11-11 21:39:36 -08:00
|
|
|
auto const v = grid[c];
|
2022-11-10 21:01:24 -08:00
|
|
|
if (std::isupper(v)) {
|
|
|
|
char polarity = x==1 || x==w-2 || y==1 || y==h-2
|
|
|
|
? '-' : '+';
|
2022-11-11 21:39:36 -08:00
|
|
|
if (grid[Up(c)] == '.') {
|
|
|
|
portals[{polarity, v, grid[Down(c)]}] = Up(c);
|
|
|
|
} else if (grid[Down(c)] == '.') {
|
|
|
|
portals[{polarity, grid[Up(c)], v}] = Down(c);
|
|
|
|
} else if (grid[Left(c)] == '.') {
|
|
|
|
portals[{polarity, v, grid[Right(c)]}] = Left(c);
|
|
|
|
} else if (grid[Right(c)] == '.') {
|
|
|
|
portals[{polarity, grid[Left(c)], v}] = Right(c);
|
2022-11-10 21:01:24 -08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return portals;
|
|
|
|
}
|
|
|
|
|
|
|
|
auto FindDistancesFrom(
|
2022-11-11 21:39:36 -08:00
|
|
|
Grid const& grid,
|
2022-11-10 21:01:24 -08:00
|
|
|
std::map<Coord, Name> const& names,
|
|
|
|
std::string const start_name,
|
|
|
|
Coord const start
|
|
|
|
) {
|
|
|
|
std::vector<std::pair<Name, std::int64_t>> result;
|
|
|
|
std::set<Coord> seen;
|
2022-11-27 11:43:10 -08:00
|
|
|
for (
|
|
|
|
std::queue<std::pair<std::int64_t, Coord>> todo
|
|
|
|
{decltype(todo)::container_type{{{0, start}}}};
|
|
|
|
!todo.empty();
|
|
|
|
todo.pop()) {
|
2022-11-10 21:01:24 -08:00
|
|
|
auto const [steps, here] = todo.front();
|
|
|
|
|
|
|
|
// Don't visit the same coordinate twice
|
|
|
|
if (!seen.insert(here).second) continue;
|
|
|
|
|
2022-11-11 21:39:36 -08:00
|
|
|
auto const c = grid[here];
|
2022-11-10 21:01:24 -08:00
|
|
|
if (c != '.') continue; // avoid walls
|
|
|
|
|
|
|
|
// success, we've found a key, record the path
|
|
|
|
if (auto it = names.find(here); it != names.end() && it->second != start_name) {
|
|
|
|
result.emplace_back(it->second, steps);
|
|
|
|
continue; // don't walk beyond the portal
|
|
|
|
}
|
|
|
|
|
|
|
|
// Visit all neighbors
|
|
|
|
for (auto const fn : directions) {
|
2022-11-27 11:43:10 -08:00
|
|
|
todo.emplace(steps+1, fn(here));
|
2022-11-10 21:01:24 -08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
auto OtherName(Name name) {
|
|
|
|
name[0] = name[0] == '+' ? '-' : '+';
|
|
|
|
return name;
|
|
|
|
}
|
|
|
|
|
2022-11-11 21:39:36 -08:00
|
|
|
auto FindDistances(Grid const& grid, Portals const& portals) {
|
2022-11-10 21:01:24 -08:00
|
|
|
Distances distances;
|
|
|
|
|
|
|
|
std::map<Coord, Name> names;
|
2022-11-10 21:25:27 -08:00
|
|
|
for (auto const& [k,v] : portals) {
|
2022-11-10 21:01:24 -08:00
|
|
|
names[v] = k;
|
|
|
|
}
|
|
|
|
|
2022-11-10 21:25:27 -08:00
|
|
|
for (auto const& [start_name, start_coord] : portals) {
|
2022-11-11 21:39:36 -08:00
|
|
|
distances[start_name] = FindDistancesFrom(grid, names, start_name, start_coord);
|
2022-11-10 21:01:24 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
return distances;
|
|
|
|
}
|
|
|
|
|
|
|
|
auto SolveMaze(Distances const& distances, bool const recursive) -> std::int64_t
|
|
|
|
{
|
|
|
|
// Track current positions and current set of keys in easy to compare form
|
2022-11-10 21:25:27 -08:00
|
|
|
using Visited = std::pair<std::int64_t, Name>;
|
2022-11-10 21:01:24 -08:00
|
|
|
std::set<Visited> seen;
|
|
|
|
|
|
|
|
// Priority queue returning lowest path cost states first.
|
2022-11-10 21:25:27 -08:00
|
|
|
using PqElt = std::tuple<std::int64_t, std::int64_t, Name>;
|
2022-11-10 21:01:24 -08:00
|
|
|
using PqCmp = decltype([](PqElt const& x, PqElt const& y) {
|
|
|
|
return std::get<0>(x) > std::get<0>(y); });
|
|
|
|
std::priority_queue<PqElt, std::vector<PqElt>, PqCmp> todo;
|
|
|
|
|
|
|
|
todo.emplace(0, 0, "-AA");
|
|
|
|
|
|
|
|
while(!todo.empty()) {
|
2022-11-27 11:54:47 -08:00
|
|
|
auto const [steps, depth, name] = std::move(todo.top());
|
2022-11-10 21:01:24 -08:00
|
|
|
todo.pop();
|
|
|
|
if (name == "-ZZ") { return steps; }
|
|
|
|
if (seen.emplace(depth, name).second) {
|
|
|
|
if (auto const it = distances.find(name); it != distances.end()) {
|
2022-11-11 08:27:18 -08:00
|
|
|
for (auto const& [next, cost] : it->second) {
|
2022-11-10 21:01:24 -08:00
|
|
|
if (next == "-ZZ") {
|
|
|
|
if (depth == 0) todo.emplace(steps + cost, depth, "-ZZ");
|
|
|
|
} else {
|
|
|
|
auto const depth_ = depth + (recursive ? (next[0]=='+' ? 1 : -1) : 0);
|
|
|
|
if (depth_ >= 0) todo.emplace(steps + cost + 1, depth_, OtherName(next));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
throw std::runtime_error{"no solution"};
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace
|
|
|
|
|
2022-11-28 09:20:30 -08:00
|
|
|
TEST_SUITE("2019-20 examples") {
|
|
|
|
TEST_CASE("part 1 a") {
|
|
|
|
std::istringstream in {
|
|
|
|
" A \n"
|
|
|
|
" A \n"
|
|
|
|
" #######.######### \n"
|
|
|
|
" #######.........# \n"
|
|
|
|
" #######.#######.# \n"
|
|
|
|
" #######.#######.# \n"
|
|
|
|
" #######.#######.# \n"
|
|
|
|
" ##### B ###.# \n"
|
|
|
|
"BC...## C ###.# \n"
|
|
|
|
" ##.## ###.# \n"
|
|
|
|
" ##...DE F ###.# \n"
|
|
|
|
" ##### G ###.# \n"
|
|
|
|
" #########.#####.# \n"
|
|
|
|
"DE..#######...###.# \n"
|
|
|
|
" #.#########.###.# \n"
|
|
|
|
"FG..#########.....# \n"
|
|
|
|
" ###########.##### \n"
|
|
|
|
" Z \n"
|
|
|
|
" Z \n"
|
|
|
|
};
|
|
|
|
auto map = Grid::Parse(in);
|
|
|
|
auto portals = FindPortals(map);
|
|
|
|
auto distances = FindDistances(map, portals);
|
|
|
|
CHECK(SolveMaze(distances, false) == 23);
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_CASE("part 1") {
|
|
|
|
std::istringstream in {
|
|
|
|
" A \n"
|
|
|
|
" A \n"
|
|
|
|
" #################.############# \n"
|
|
|
|
" #.#...#...................#.#.# \n"
|
|
|
|
" #.#.#.###.###.###.#########.#.# \n"
|
|
|
|
" #.#.#.......#...#.....#.#.#...# \n"
|
|
|
|
" #.#########.###.#####.#.#.###.# \n"
|
|
|
|
" #.............#.#.....#.......# \n"
|
|
|
|
" ###.###########.###.#####.#.#.# \n"
|
|
|
|
" #.....# A C #.#.#.# \n"
|
|
|
|
" ####### S P #####.# \n"
|
|
|
|
" #.#...# #......VT\n"
|
|
|
|
" #.#.#.# #.##### \n"
|
|
|
|
" #...#.# YN....#.# \n"
|
|
|
|
" #.###.# #####.# \n"
|
|
|
|
"DI....#.# #.....# \n"
|
|
|
|
" #####.# #.###.# \n"
|
|
|
|
"ZZ......# QG....#..AS\n"
|
|
|
|
" ###.### ####### \n"
|
|
|
|
"JO..#.#.# #.....# \n"
|
|
|
|
" #.#.#.# ###.#.# \n"
|
|
|
|
" #...#..DI BU....#..LF\n"
|
|
|
|
" #####.# #.##### \n"
|
|
|
|
"YN......# VT..#....QG\n"
|
|
|
|
" #.###.# #.###.# \n"
|
|
|
|
" #.#...# #.....# \n"
|
|
|
|
" ###.### J L J #.#.### \n"
|
|
|
|
" #.....# O F P #.#...# \n"
|
|
|
|
" #.###.#####.#.#####.#####.###.# \n"
|
|
|
|
" #...#.#.#...#.....#.....#.#...# \n"
|
|
|
|
" #.#####.###.###.#.#.#########.# \n"
|
|
|
|
" #...#.#.....#...#.#.#.#.....#.# \n"
|
|
|
|
" #.###.#####.###.###.#.#.####### \n"
|
|
|
|
" #.#.........#...#.............# \n"
|
|
|
|
" #########.###.###.############# \n"
|
|
|
|
" B J C \n"
|
|
|
|
" U P P \n"
|
|
|
|
};
|
|
|
|
auto map = Grid::Parse(in);
|
|
|
|
auto portals = FindPortals(map);
|
|
|
|
auto distances = FindDistances(map, portals);
|
|
|
|
CHECK(SolveMaze(distances, false) == 58);
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_CASE("part 2") {
|
|
|
|
std::istringstream in {
|
|
|
|
" Z L X W C \n"
|
|
|
|
" Z P Q B K \n"
|
|
|
|
" ###########.#.#.#.#######.############### \n"
|
|
|
|
" #...#.......#.#.......#.#.......#.#.#...# \n"
|
|
|
|
" ###.#.#.#.#.#.#.#.###.#.#.#######.#.#.### \n"
|
|
|
|
" #.#...#.#.#...#.#.#...#...#...#.#.......# \n"
|
|
|
|
" #.###.#######.###.###.#.###.###.#.####### \n"
|
|
|
|
" #...#.......#.#...#...#.............#...# \n"
|
|
|
|
" #.#########.#######.#.#######.#######.### \n"
|
|
|
|
" #...#.# F R I Z #.#.#.# \n"
|
|
|
|
" #.###.# D E C H #.#.#.# \n"
|
|
|
|
" #.#...# #...#.# \n"
|
|
|
|
" #.###.# #.###.# \n"
|
|
|
|
" #.#....OA WB..#.#..ZH\n"
|
|
|
|
" #.###.# #.#.#.# \n"
|
|
|
|
"CJ......# #.....# \n"
|
|
|
|
" ####### ####### \n"
|
|
|
|
" #.#....CK #......IC\n"
|
|
|
|
" #.###.# #.###.# \n"
|
|
|
|
" #.....# #...#.# \n"
|
|
|
|
" ###.### #.#.#.# \n"
|
|
|
|
"XF....#.# RF..#.#.# \n"
|
|
|
|
" #####.# ####### \n"
|
|
|
|
" #......CJ NM..#...# \n"
|
|
|
|
" ###.#.# #.###.# \n"
|
|
|
|
"RE....#.# #......RF\n"
|
|
|
|
" ###.### X X L #.#.#.# \n"
|
|
|
|
" #.....# F Q P #.#.#.# \n"
|
|
|
|
" ###.###########.###.#######.#########.### \n"
|
|
|
|
" #.....#...#.....#.......#...#.....#.#...# \n"
|
|
|
|
" #####.#.###.#######.#######.###.###.#.#.# \n"
|
|
|
|
" #.......#.......#.#.#.#.#...#...#...#.#.# \n"
|
|
|
|
" #####.###.#####.#.#.#.#.###.###.#.###.### \n"
|
|
|
|
" #.......#.....#.#...#...............#...# \n"
|
|
|
|
" #############.#.#.###.################### \n"
|
|
|
|
" A O F N \n"
|
|
|
|
" A A D M \n"
|
|
|
|
};
|
|
|
|
auto map = Grid::Parse(in);
|
|
|
|
auto portals = FindPortals(map);
|
|
|
|
auto distances = FindDistances(map, portals);
|
|
|
|
CHECK(SolveMaze(distances, true) == 396);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2022-11-10 21:01:24 -08:00
|
|
|
auto main(int argc, char** argv) -> int {
|
2022-11-21 18:49:22 -08:00
|
|
|
auto map = Grid::Parse(*Startup(argc, argv));
|
2022-11-10 21:01:24 -08:00
|
|
|
auto portals = FindPortals(map);
|
|
|
|
auto distances = FindDistances(map, portals);
|
|
|
|
|
|
|
|
std::cout << "Part 1: " << SolveMaze(distances, false) << std::endl;
|
|
|
|
std::cout << "Part 2: " << SolveMaze(distances, true) << std::endl;
|
|
|
|
}
|