Day 20 part 1
This was pretty much just day 18 again, but without doors and with an input data parsing skill check. I simplified day 18 and went with a basic Dijkstra algorithm after the DFS to crawl the maze which solved this just fine. Part 2 is...ugh.
This commit is contained in:
341
days/20.go
Normal file
341
days/20.go
Normal file
@ -0,0 +1,341 @@
|
||||
package days
|
||||
|
||||
import (
|
||||
"container/heap"
|
||||
"fmt"
|
||||
"math"
|
||||
"strings"
|
||||
|
||||
u "parnic.com/aoc2019/utilities"
|
||||
)
|
||||
|
||||
type day20Cell int8
|
||||
type day20Graph map[string][]u.Pair[string, int]
|
||||
|
||||
const (
|
||||
day20CellWall day20Cell = iota
|
||||
day20CellPath
|
||||
day20CellDonutHole
|
||||
)
|
||||
|
||||
var (
|
||||
day20AdjacentOffsets = []u.Vec2i{
|
||||
{X: -1, Y: 0},
|
||||
{X: 1, Y: 0},
|
||||
{X: 0, Y: -1},
|
||||
{X: 0, Y: 1},
|
||||
}
|
||||
)
|
||||
|
||||
type Day20 struct {
|
||||
grid [][]day20Cell
|
||||
entrance u.Vec2i
|
||||
exit u.Vec2i
|
||||
portals map[string]u.Pair[u.Vec2i, u.Vec2i]
|
||||
portalNames []string
|
||||
}
|
||||
|
||||
func (d *Day20) Parse() {
|
||||
d.portals = make(map[string]u.Pair[u.Vec2i, u.Vec2i])
|
||||
d.portalNames = make([]string, 0)
|
||||
|
||||
lines := u.GetStringLines("20s1")
|
||||
d.grid = make([][]day20Cell, len(lines)-4)
|
||||
currPortal := strings.Builder{}
|
||||
|
||||
for row, line := range lines {
|
||||
y := row - 2
|
||||
isGridRow := row >= 2 && row < len(lines)-2
|
||||
|
||||
if isGridRow {
|
||||
d.grid[y] = make([]day20Cell, len(line)-4)
|
||||
}
|
||||
|
||||
for col, ch := range lines[row] {
|
||||
x := col - 2
|
||||
isGridCol := col >= 2 && col < len(line)-2
|
||||
|
||||
if isGridRow && isGridCol {
|
||||
if ch == '#' {
|
||||
d.grid[y][x] = day20CellWall
|
||||
} else if ch == '.' {
|
||||
d.grid[y][x] = day20CellPath
|
||||
} else {
|
||||
d.grid[y][x] = day20CellDonutHole
|
||||
}
|
||||
}
|
||||
|
||||
if ch >= 'A' && ch <= 'Z' {
|
||||
portalX := 0
|
||||
portalY := 0
|
||||
if len(line) > col+1 && line[col+1] >= 'A' && line[col+1] <= 'Z' {
|
||||
currPortal.WriteRune(ch)
|
||||
currPortal.WriteRune(rune(line[col+1]))
|
||||
|
||||
if len(line) > col+2 && line[col+2] == '.' {
|
||||
portalY = y
|
||||
portalX = x + 2
|
||||
} else if col-1 >= 0 && line[col-1] == '.' {
|
||||
portalY = y
|
||||
portalX = x - 1
|
||||
} else {
|
||||
panic("!")
|
||||
}
|
||||
} else if len(lines) > row+1 && lines[row+1][col] >= 'A' && lines[row+1][col] <= 'Z' {
|
||||
currPortal.WriteRune(ch)
|
||||
currPortal.WriteRune(rune(lines[row+1][col]))
|
||||
|
||||
if len(lines) > row+2 && lines[row+2][col] == '.' {
|
||||
portalY = y + 2
|
||||
portalX = x
|
||||
} else if row-1 >= 0 && lines[row-1][col] == '.' {
|
||||
portalY = y - 1
|
||||
portalX = x
|
||||
} else {
|
||||
panic("!")
|
||||
}
|
||||
}
|
||||
|
||||
if currPortal.Len() == 2 {
|
||||
portal := currPortal.String()
|
||||
portalVec := u.Vec2i{X: portalX, Y: portalY}
|
||||
|
||||
if portal == "AA" {
|
||||
d.entrance = portalVec
|
||||
} else if portal == "ZZ" {
|
||||
d.exit = portalVec
|
||||
} else {
|
||||
pair, exists := d.portals[portal]
|
||||
if exists {
|
||||
d.portals[portal] = u.Pair[u.Vec2i, u.Vec2i]{First: pair.First, Second: portalVec}
|
||||
} else {
|
||||
d.portals[portal] = u.Pair[u.Vec2i, u.Vec2i]{First: portalVec, Second: portalVec}
|
||||
}
|
||||
|
||||
u.AddToArray(&d.portalNames, portal)
|
||||
}
|
||||
|
||||
// fmt.Println("full portal:", currPortal.String(), "at", portalX, ",", portalY)
|
||||
currPortal.Reset()
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
func (d Day20) Num() int {
|
||||
return 20
|
||||
}
|
||||
|
||||
func (d Day20) isPortal(vec u.Vec2i) (bool, int) {
|
||||
if d.grid[vec.Y][vec.X] != day20CellPath {
|
||||
return false, 0
|
||||
}
|
||||
|
||||
for i, name := range d.portalNames {
|
||||
v := d.portals[name]
|
||||
if v.First == vec || v.Second == vec {
|
||||
return true, i
|
||||
}
|
||||
}
|
||||
|
||||
return false, 0
|
||||
}
|
||||
|
||||
func (d Day20) Draw() {
|
||||
for y := range d.grid {
|
||||
for x := range d.grid[y] {
|
||||
switch d.grid[y][x] {
|
||||
case day20CellWall:
|
||||
fmt.Print("█")
|
||||
case day20CellDonutHole:
|
||||
fmt.Print(" ")
|
||||
case day20CellPath:
|
||||
posVec := u.Vec2i{X: x, Y: y}
|
||||
if posVec == d.entrance {
|
||||
fmt.Print("@")
|
||||
} else if posVec == d.exit {
|
||||
fmt.Print("!")
|
||||
} else {
|
||||
isPortal, portalIdx := d.isPortal(posVec)
|
||||
if isPortal {
|
||||
ch := 'a' + portalIdx
|
||||
if ch > 'z' {
|
||||
ch = 'A' + (portalIdx - 26)
|
||||
}
|
||||
fmt.Printf("%c", ch)
|
||||
} else {
|
||||
fmt.Print(" ")
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
fmt.Println()
|
||||
}
|
||||
}
|
||||
|
||||
func (d Day20) findAdjacentCells(inPos u.Vec2i, grid [][]day20Cell) []u.Pair[string, int] {
|
||||
found := make([]u.Pair[string, int], 0)
|
||||
|
||||
getAdjacent := func(pos u.Vec2i) []u.Vec2i {
|
||||
retAdjacent := make([]u.Vec2i, 0, len(day20AdjacentOffsets))
|
||||
for _, off := range day20AdjacentOffsets {
|
||||
offVec := u.Vec2i{X: pos.X + off.X, Y: pos.Y + off.Y}
|
||||
if offVec.Y < 0 || offVec.Y >= len(grid) || offVec.X < 0 || offVec.X >= len(grid[0]) {
|
||||
continue
|
||||
}
|
||||
if grid[offVec.Y][offVec.X] != day20CellPath {
|
||||
continue
|
||||
}
|
||||
retAdjacent = append(retAdjacent, offVec)
|
||||
}
|
||||
|
||||
return retAdjacent
|
||||
}
|
||||
|
||||
queue := make([]u.Pair[int, u.Vec2i], 0)
|
||||
visited := map[u.Vec2i]bool{
|
||||
inPos: true,
|
||||
}
|
||||
for _, adjacent := range getAdjacent(inPos) {
|
||||
queue = append(queue, u.Pair[int, u.Vec2i]{First: 1, Second: adjacent})
|
||||
}
|
||||
|
||||
for len(queue) > 0 {
|
||||
next := queue[0]
|
||||
queue = queue[1:]
|
||||
|
||||
if _, exists := visited[next.Second]; !exists {
|
||||
visited[next.Second] = true
|
||||
|
||||
adjacentIsPortal, portalIdx := d.isPortal(next.Second)
|
||||
if adjacentIsPortal || next.Second == d.entrance || next.Second == d.exit {
|
||||
var portalName string
|
||||
if next.Second == d.entrance {
|
||||
portalName = "AA"
|
||||
} else if next.Second == d.exit {
|
||||
portalName = "ZZ"
|
||||
} else {
|
||||
portalName = d.portalNames[portalIdx]
|
||||
}
|
||||
|
||||
alreadyFound := false
|
||||
for _, p := range found {
|
||||
if p.First == portalName {
|
||||
alreadyFound = true
|
||||
break
|
||||
}
|
||||
}
|
||||
if !alreadyFound {
|
||||
found = append(found, u.Pair[string, int]{First: portalName, Second: next.First})
|
||||
continue
|
||||
}
|
||||
}
|
||||
|
||||
for _, neighbor := range getAdjacent(next.Second) {
|
||||
if _, exists := visited[neighbor]; !exists {
|
||||
queue = append(queue, u.Pair[int, u.Vec2i]{First: next.First + 1, Second: neighbor})
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
return found
|
||||
}
|
||||
|
||||
type day20PriorityQueue struct {
|
||||
distance int
|
||||
neighbor string
|
||||
}
|
||||
type day20PriorityQueueHeap []day20PriorityQueue
|
||||
|
||||
func (h day20PriorityQueueHeap) Len() int { return len(h) }
|
||||
func (h day20PriorityQueueHeap) Less(i, j int) bool { return h[i].distance < h[j].distance }
|
||||
func (h day20PriorityQueueHeap) Swap(i, j int) { h[i], h[j] = h[j], h[i] }
|
||||
|
||||
func (h *day20PriorityQueueHeap) Push(x any) {
|
||||
*h = append(*h, x.(day20PriorityQueue))
|
||||
}
|
||||
|
||||
func (h *day20PriorityQueueHeap) Pop() any {
|
||||
old := *h
|
||||
n := len(old)
|
||||
x := old[n-1]
|
||||
*h = old[0 : n-1]
|
||||
return x
|
||||
}
|
||||
|
||||
func (d Day20) dijkstra(graph day20Graph, start, end string) int {
|
||||
distance := make(map[string]int)
|
||||
|
||||
ih := day20PriorityQueueHeap{
|
||||
day20PriorityQueue{
|
||||
distance: 0,
|
||||
neighbor: start,
|
||||
},
|
||||
}
|
||||
|
||||
heap.Init(&ih)
|
||||
visited := make(map[string]bool)
|
||||
|
||||
for ih.Len() > 0 {
|
||||
node := heap.Pop(&ih).(day20PriorityQueue)
|
||||
|
||||
if node.neighbor == end {
|
||||
return node.distance - 1
|
||||
}
|
||||
|
||||
if _, exists := visited[node.neighbor]; exists {
|
||||
continue
|
||||
}
|
||||
|
||||
visited[node.neighbor] = true
|
||||
|
||||
for _, p := range graph[node.neighbor] {
|
||||
if _, exists := visited[p.First]; exists {
|
||||
continue
|
||||
}
|
||||
|
||||
newDistance := node.distance + p.Second
|
||||
if dist, exists := distance[p.First]; !exists || newDistance < dist {
|
||||
distance[p.First] = newDistance
|
||||
heap.Push(&ih, day20PriorityQueue{
|
||||
distance: newDistance + 1,
|
||||
neighbor: p.First,
|
||||
})
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
return math.MaxInt
|
||||
}
|
||||
|
||||
func (d Day20) buildGraph() day20Graph {
|
||||
graph := make(day20Graph)
|
||||
|
||||
adjacent := d.findAdjacentCells(d.entrance, d.grid)
|
||||
graph["AA"] = adjacent
|
||||
|
||||
for _, portalName := range d.portalNames {
|
||||
portal := d.portals[portalName]
|
||||
adjacent = d.findAdjacentCells(portal.First, d.grid)
|
||||
graph[portalName] = adjacent
|
||||
adjacent = d.findAdjacentCells(portal.Second, d.grid)
|
||||
graph[portalName] = append(graph[portalName], adjacent...)
|
||||
}
|
||||
|
||||
return graph
|
||||
}
|
||||
|
||||
func (d *Day20) Part1() string {
|
||||
// d.Draw()
|
||||
|
||||
graph := d.buildGraph()
|
||||
distance := d.dijkstra(graph, "AA", "ZZ")
|
||||
return fmt.Sprintf("%d %s%d%s", distance, u.TextBold, len(graph), u.TextReset)
|
||||
}
|
||||
|
||||
func (d *Day20) Part2() string {
|
||||
return fmt.Sprintf("%s%d%s", u.TextBold, 0, u.TextReset)
|
||||
}
|
125
inputs/20p.txt
Normal file
125
inputs/20p.txt
Normal file
@ -0,0 +1,125 @@
|
||||
J L P P V T X
|
||||
G V M I O R C
|
||||
#######################################.#######.###.###########.###.#.#######.#########################################
|
||||
#...#.........#.#...#.#...#.........#.....#.#.....#.......#...#...#.....#.#...........#...........#.......#...#.......#
|
||||
###.#########.#.#.###.#.#######.###.###.###.#####.#.###.###.#####.###.###.#####.#.#######.#####.###.#.#####.#####.#####
|
||||
#.#.....#...........#...#...#.#.#.....#.....#.#...#.#.....#.#.#.....#.....#.....#.#.#.#.......#.#...#.....#.#.#.....#.#
|
||||
#.#####.#####.###.#####.###.#.#######.#.#.###.#.#####.###.#.#.#.#########.#.#.#####.#.###.#######.#.#######.#.###.###.#
|
||||
#...#...#.....#...#.#...#.#.#...#.#.....#.#.......#...#.#.#...#.#.#.......#.#.#...............#.#.#.........#.#.#.....#
|
||||
###.#.#.#########.#.###.#.#.#.###.#.#.#########.#####.#.#.#.#.#.#.###.#####.###.#.#.#.###.#.###.###.#######.#.#.#.#####
|
||||
#.....#...#.....#.........#...#.#...#.........#.....#.#...#.#.....#.....#.#.#...#.#.#.#...#...........#...#.........#.#
|
||||
#########.#####.#.#.#.#.#.###.#.#######.#####.###.#####.###.###.###.#####.#.#.###.#.#.###.#.#####.#.###.#########.###.#
|
||||
#.#.........#.....#.#.#.#.#.......#.......#.#.#.......#.#...#.#...#...#...#.....#.#.#...#.#.....#.#.............#.#...#
|
||||
#.###.###.#####.#########.###.#####.###.#.#.#####.#####.###.#.###.#.###.###.#.###.#######.###.#.#.#.#######.#####.###.#
|
||||
#...#...#.....#.#.#...#.........#...#...#.#.....#.#.#.....#...#...#.......#.#.#.........#...#.#.#.#.......#.#...#.#.#.#
|
||||
#.#########.###.#.#.#####.#.###.###.#######.###.#.#.#.###.###.###.#.#.#.###.#####.#.###.#.#.###.#.#.#.#######.#.###.#.#
|
||||
#...#.......#.#.#.....#.#.#.#...........#.....#.....#.#...#.....#.#.#.#.#.......#.#.#...#.#.#.#.#.#.#...#...#.#.#.#...#
|
||||
#.#########.#.###.###.#.###########.#########.###########.#.###.###.###.#########.#########.#.#####.#.###.###.###.###.#
|
||||
#...#.#.#.......#.#.....#.....#.....#.#.......#.#...#.#...#...#.#.#.#.#.#...#...........#.#.....#...#.....#...#.......#
|
||||
###.#.#.#####.#####.###.#####.#####.#.#####.###.###.#.###.#.#####.#.#.###.#######.#######.#.#######.#.###.###.#####.###
|
||||
#.....#.#.#.#.....#.#.#.........#.#.....#.#...........#...#.....#.........#...#...#...#...#.#.#...#.#.#.#...#.#.#.....#
|
||||
#.#.#.#.#.#.#.#######.#########.#.###.###.###.#####.#####.#.#######.#########.###.###.###.###.#.#####.#.#####.#.#.#.###
|
||||
#.#.#.......#.....#.#.#.#.#.#.#.#.....#...#...#.#.#.#...#.#.#.#.#.....#...#...#...#...#.....#.....#.#.#.#...#...#.#.#.#
|
||||
#####.#####.#.#####.#.#.#.#.#.#.###.#####.#.###.#.###.###.#.#.#.#.#.###.###.#.#.#####.#.#.#######.#.###.#.#####.###.#.#
|
||||
#.#.#.#.....#.....#.......................#...#...#.......#.....#.#.#.......#.#.........#...#.#.#.#...#.....#.#.#.....#
|
||||
#.#.#######.#.#######.###.#.#####.#######.#.#####.#.#.###.###.#####.#######.#.###.#######.#.#.#.#.#.#####.###.#.###.###
|
||||
#...#...........#.#.#.#...#.#...#.#...#.#.#.....#...#...#.#...#...........#.#...#.....#.#.#...........#...#...#.#...#.#
|
||||
###.#.#.###.#.###.#.#.#.#####.#####.###.#.#.#######.#.#.#.#.###########.###.###.#.#.#.#.#.#.#.#.###.#.###.###.#.#.#.#.#
|
||||
#.....#.#.#.#.#.....#.#...#...#.#.#.....#.#.....#...#.#.#.#...#.#.#...#.#...#.#.#.#.#.#.#.#.#.#.#.#.#...#.......#.#...#
|
||||
###.#.#.#.#.#####.###########.#.#.#.###.#.#.#####.#.#######.###.#.#.#.#.#.#.#.#.#.#####.#.#######.#######.#.###.#.#####
|
||||
#.#.#.#.#...#.#.......#.......#.....#.#.#.#...#.#.#.......#.......#.#...#.#.#.#...#.#...#.#...#...#...#...#.#...#.....#
|
||||
#.#########.#.###.#.#####.#.#.#####.#.#.#.###.#.###.###.#########.#.#######.#.#####.###.###.###.#####.#########.###.###
|
||||
#.....#.#.#.#.....#...#...#.#.#.......#...#.....#.....#...#.......#.....#.................#...#...#.........#.#.#.#...#
|
||||
#.#####.#.#.#######.#######.#########.#########.#########.#.#########.#.#######.#########.#.###.#####.#######.#.#.#.###
|
||||
#.....#.#.#.#...#.#.#.#.#.#...# F O O X N U W #.#.....#.#.#...#.#.#.........#
|
||||
#.#####.#.#.#.###.#.#.#.#.#.### Z G D L B Y W ###.#####.#.###.#.#.###.###.###
|
||||
#...#.#.#.#.#.#...#.......#...# #.......#.....#...#...#.#.#...#
|
||||
#.###.#.#.#.#.###.#.#.###.#.#.# #.#.#######.###.#.###.#.#.#.###
|
||||
PL....#.#.#...#...#...#...#...#.# #.#.#.#.#...#.#.#.....#.#.#.#.#
|
||||
#.###.#.###.#.###.#.#.#.###.#.# #.###.#.#.###.###.#######.#.#.#
|
||||
#.......#.#.......#.#.#.#...#..EL PM..#.........#.#.....#.#.......#
|
||||
#.#.#.###.###.#.#.###########.# #.###.###.###.#.#.#.#.###.###.#
|
||||
#.#.#.........#.#.#.....#...#.# #.#.#...#.......#.#.......#....BR
|
||||
#############.#.#####.###.##### #.#.###.#########.#.#.###.###.#
|
||||
YP..#.........#.#...#.#.#.#.....# #.#...#.....#.#.#.#.#...#...#.#
|
||||
#.#.###.#.#####.###.#.#.###.#.# #.#.#.###.###.#.###########.#.#
|
||||
#...#.#.#.#.#.#.#...#.....#.#.# #...#.....#.#.#.#...#.#...#.#.#
|
||||
#.###.###.#.#.###.#.#.#.###.### ###########.#.#.#.###.###.###.#
|
||||
#...#.#...........#...#........TH #.......#...............#...#.#
|
||||
###.#.#####################.### #.#####.#.###.###.#####.#.#.###
|
||||
EV..#.#...#.................#...# LV..#.#.....#...#...#.#.#...#.#..UN
|
||||
#.###.#.#####.#.###.#.#.###.### #.#.#.###.###.#.#.#.#.#####.#.#
|
||||
#.#...#...#...#.#...#.#.#.#...# #.#...#.#.#.#.#.#.#.#.......#.#
|
||||
#.#.#####.#.#.#.###.###.#.##### #######.###.#######.#.#######.#
|
||||
#.#.#.....#.#.#...#.#.#.......# #.#.......#.....#.#.#.........#
|
||||
#.#.#.#######.#######.###.#.#.# #.#####.#.###.###.#.###########
|
||||
#...#...........#...#...#.#.#..XC #...#.#.#.........#...........#
|
||||
#######.#########.###.###.##### #.#.#.###.###.###.###.#.#.#.###
|
||||
WV..#.#.#.#...............#.#.#.# #.#...#.#.#.#.#.......#.#.#....OD
|
||||
#.#.#.#.#.#.#.###.#####.###.#.# #.###.#.#.#.#########.#########
|
||||
#.....#.#.#.#...#.#.....#.#.#..PI #.#.....#...#.....#.#.....#...#
|
||||
#####.###.#####.#.#####.#.#.#.# #.#.#.#.###.###.###.#########.#
|
||||
AA........#.....#.#.#...#.......# UN..#.#.#.....#...#...#.#.#.#...#
|
||||
#.#######.###########.###.###.# ###.###########.###.#.#.#.###.#
|
||||
#...........#.#.#.#.....#.#.#.# #...#...#.......#..............OA
|
||||
#.#.#.#.#.#.#.#.#.###.#####.### #####.#.#.#.###.#.#.###.###.#.#
|
||||
#.#.#.#.#.#.....#.............# #.#...#...#.#.....#.#...#...#.#
|
||||
#################.#########.### #.#.###.#.#########.###########
|
||||
#.....#.#.#.#.......#.....#...# #.#...#.#.#.......#.#.#.....#.#
|
||||
#.#.###.#.#.#######.#.###.###.# #.#.###.#.#.#########.#.#####.#
|
||||
#.#.#...#...#.#...#.....#.#.#.# SL....#.#.#.#.#.#.....#...#.#...#
|
||||
#.#.#.#.#.###.#.#.#######.#.#.# #####.#####.#.#.#.#####.#.#.###
|
||||
EL..#...#.........#.........#.#..WV #...............#.#.#..........XP
|
||||
#.###########.###.#########.### #.#########.###.###.###.#####.#
|
||||
#.#.......#...#...#...........# #.#.....#...#...#...#.......#.#
|
||||
###.#####.###.#########.#.###.# #.#.###.#.#.#####.#.#####.#.#.#
|
||||
UY..#...#.....#.#.........#.#....XP PL..#...#...#.#.#.#.#...#...#.#.#
|
||||
#.#.###.#.###########.#.#.##### #.###.#######.#.###.#.#.#####.#
|
||||
#.#.#...#.#.#.#.#.#...#.#.....# #...#...............#.....#.#.#
|
||||
#.#.#.#####.#.#.#.###.###.##### #.#.###############.#.#.###.#.#
|
||||
#...#...................#.....# #.#.#...........#...#.#.#...#.#
|
||||
###############.############### #.#.###.#######.###########.###
|
||||
#...........#.#.#.............# #.#.#.....#...........#...#.#.#
|
||||
#####.#.#.###.###.#######.###.# #########.#.#.###########.#.#.#
|
||||
#.....#.#.#.#.#.........#.#...# #.#.#.....#.#.#...#...#...#....TH
|
||||
#.#####.###.#.#######.#####.### #.#.###.#.#.#########.###.#.#.#
|
||||
ZZ....#...#...#.#...........#.#.# JG........#.#.................#.#
|
||||
###.#.###.#.#.###.#.#.#####.#.# #.###.#.###.#.#.#####.###.#.###
|
||||
JH....#.....#.......#.#...#......EV #.#...#...#.#.#...#.....#.#...#
|
||||
#.#.#######.#.#####.#.#####.### #.###.#########.###.#.#####.#.#
|
||||
#.#.#.......#.#.#.#.#.....#.#.# #.#...#...........#.#.#.#...#.#
|
||||
#.#.###.#.#.###.#.#.#######.#.# V J Y T C B O #.#####.###.#.###.#.###.###.#.#
|
||||
#.#.#...#.#...#.....#.#.......# O H P R K R A #.#.....#...#...#.#.#.#.....#.#
|
||||
#.#.#.#.###.#.#.#.#.#.#.###.#.#####.#####.###########.#######.#####.#####.#######.###############.#.#.#.###.#.#.#.#.###
|
||||
#.#.#.#.#...#.#.#.#...#...#.#.#.......#.......#...#.....#.....#.......#...#...#.........#.#.#.....#.#.#.#.#.#...#.#.#.#
|
||||
###.#####.#.#######.###.###.#######.#####.#####.###.#######.###.#######.###.#.#.#.#.###.#.#.###.#####.###.#########.#.#
|
||||
#.....#.#.#.....#...#...#.#.#...........#.........#.....#...#.#.....#.#.....#.#.#.#.#.....#...#.#.#.........#.........#
|
||||
#.#####.#.###.#####.#####.#.#.###.###.#.###.#.###.#####.#.#.#.#.#####.###.###.#.#####.#.###.#####.###.###.###.#.#.###.#
|
||||
#...#...#...#.#.........#...#.#...#.#.#.#.#.#...#.#.....#.#...#.......#.#.#...#.#...#.#.#.....#.#.....#.....#.#.#.#...#
|
||||
#######.#####.#####.#######.#####.#.#.###.#####.#####.###.###########.#.#####.#.#.#########.###.###.#.###.#######.###.#
|
||||
#.......#.#.....#...#.........#...#.#.#...#.........#...#.#.#.......#...#.#.#.#...#...#...#.#.....#.#.#.#.#.........#.#
|
||||
#.#.#.#.#.#.#####.#####.###.#####.#.#.#.#####.#.#.#.###.#.#.#####.#.#.###.#.#.#.###.###.###.###.###.###.###.#.###.#####
|
||||
#.#.#.#.......#...#...#.#...#.......#.#...#...#.#.#.#.#.#.....#...#.#.....#...#...#.#.#.........#.#...#...#.#.#.......#
|
||||
#######.###.###.#.#.###############.###.#####.###.###.#.#.#.#.#.#.#.#.###.###.###.#.#.#.###.#.###.###.#.#.#.#####.#.#.#
|
||||
#...#.#.#.....#.#.#.#.........#.#.........#.....#.#...#.#.#.#.#.#.#.....#.#...#...#...#...#.#.....#.#.#.#.......#.#.#.#
|
||||
#.###.###.#.#####.#.#########.#.#######.#.###.#####.###.#.#.#####.###.#######.#.###.###.#######.#.#.#####.#.#.#.###.###
|
||||
#.....#...#...#.#.....#...............#.#.#.....#.......#.#.#.....#.#...#.....#.....#.....#.....#.....#.#.#.#.#.#.....#
|
||||
#####.#.#.###.#.#.#########.#####.###.#.###.###.#######.#.#####.###.#.#.#####.#.###.#.#.#######.#.#.###.#.#######.#.#.#
|
||||
#.......#.#.#.#.....#.......#.#...#.#.....#.#...#.#.#...#...#.......#.#.#.....#.#.....#...#...#.#.#.#.......#.#.#.#.#.#
|
||||
#.###.#.#.#.###.#######.#####.#.#.#####.#.###.###.#.#.#.#.#####.#####.#####.###.#.###.###.#.###.#.###########.#.#.#.#.#
|
||||
#.#.#.#.#...#...#...#.#.#.#.#.#.#.....#.#...#...#.....#.#...#.#.....#.#.......#.#.#...#.#.....#.#.#.........#...#.#.#.#
|
||||
#.#.#.#.#.###.#####.#.###.#.#.###.#######.#####.#.###.###.#.#.#.#############.#######.#.#.###.#####.#.###.###.#####.###
|
||||
#.#.#.#.#...#...#.#.....................#.#.....#...#.#...#...#.#...#.#.......#...#.#...#.#.#.#.....#.#.........#.#...#
|
||||
#.#.#.#.#.#######.#####.#####.#####.#########.#.#.#########.#.#.###.#.#####.###.###.#.#.###.#####.#########.#####.#####
|
||||
#.#...#.#.#...#.........#.#.#.#.......#...#.#.#.#.........#.#.#.#.....#...........#...#.#.......#.#.#.#.#...........#.#
|
||||
#.#######.###.###.#######.#.#####.#####.###.#.#######.#####.###.###.#.###.###.#######.#######.###.#.#.#.###.###.###.#.#
|
||||
#.....#.#.#.#.#.#.#.#.....#.........#.........#.#...#...#.#...#.....#.#.#...#.#.#.#.#.....#...............#...#.#.....#
|
||||
#.#####.###.#.#.###.#####.#######.#####.#.###.#.#.#.#.###.#.#########.#.#.###.#.#.#.#.#########.#####.#.#.#######.#.#.#
|
||||
#.#.#.......................#.#.#.#...#.#.#.....#.#...#.#...#.#.#.......#.#.....#.#...#...#.........#.#.#.......#.#.#.#
|
||||
#.#.#.###.#####.#########.#.#.#.#.#.###########.#.###.#.#.###.#.###.###.###.#####.###.###.#.#.#.#.###.#####.#.###.#####
|
||||
#.#...#.#.#.#...#.........#.........#...#.#.....#...#.#.......#...#...#.#.....#...#.........#.#.#...#...#...#.#.#...#.#
|
||||
#######.###.###.#####.#####.#####.#.#.###.###.###.#######.#.#.#.#####.#######.#.#.#.#####.#####.#.#.#.#####.###.#####.#
|
||||
#...............#.....#.......#...#.....#.......#.....#...#.#.#.......#.......#.#.......#.....#.#.#.#.....#...........#
|
||||
#####################################.#####.#######.#######.###.#########.#####.#######################################
|
||||
O C N X F S W
|
||||
G K B L Z L W
|
19
inputs/20s1.txt
Normal file
19
inputs/20s1.txt
Normal file
@ -0,0 +1,19 @@
|
||||
A
|
||||
A
|
||||
#######.#########
|
||||
#######.........#
|
||||
#######.#######.#
|
||||
#######.#######.#
|
||||
#######.#######.#
|
||||
##### B ###.#
|
||||
BC...## C ###.#
|
||||
##.## ###.#
|
||||
##...DE F ###.#
|
||||
##### G ###.#
|
||||
#########.#####.#
|
||||
DE..#######...###.#
|
||||
#.#########.###.#
|
||||
FG..#########.....#
|
||||
###########.#####
|
||||
Z
|
||||
Z
|
37
inputs/20s2.txt
Normal file
37
inputs/20s2.txt
Normal file
@ -0,0 +1,37 @@
|
||||
A
|
||||
A
|
||||
#################.#############
|
||||
#.#...#...................#.#.#
|
||||
#.#.#.###.###.###.#########.#.#
|
||||
#.#.#.......#...#.....#.#.#...#
|
||||
#.#########.###.#####.#.#.###.#
|
||||
#.............#.#.....#.......#
|
||||
###.###########.###.#####.#.#.#
|
||||
#.....# A C #.#.#.#
|
||||
####### S P #####.#
|
||||
#.#...# #......VT
|
||||
#.#.#.# #.#####
|
||||
#...#.# YN....#.#
|
||||
#.###.# #####.#
|
||||
DI....#.# #.....#
|
||||
#####.# #.###.#
|
||||
ZZ......# QG....#..AS
|
||||
###.### #######
|
||||
JO..#.#.# #.....#
|
||||
#.#.#.# ###.#.#
|
||||
#...#..DI BU....#..LF
|
||||
#####.# #.#####
|
||||
YN......# VT..#....QG
|
||||
#.###.# #.###.#
|
||||
#.#...# #.....#
|
||||
###.### J L J #.#.###
|
||||
#.....# O F P #.#...#
|
||||
#.###.#####.#.#####.#####.###.#
|
||||
#...#.#.#...#.....#.....#.#...#
|
||||
#.#####.###.###.#.#.#########.#
|
||||
#...#.#.....#...#.#.#.#.....#.#
|
||||
#.###.#####.###.###.#.#.#######
|
||||
#.#.........#...#.............#
|
||||
#########.###.###.#############
|
||||
B J C
|
||||
U P P
|
37
inputs/20s3.txt
Normal file
37
inputs/20s3.txt
Normal file
@ -0,0 +1,37 @@
|
||||
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
|
Reference in New Issue
Block a user