123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118 |
- package main
- import (
- "bufio"
- "fmt"
- "log"
- "os"
- "strings"
- )
- type Directions struct {
- left string
- right string
- }
- type Network struct {
- moves string
- paths map[string]Directions
- starts []string
- }
- func readInput(file *os.File) Network {
- scanner := bufio.NewScanner(file)
- var network Network
- readMoves := false
- for scanner.Scan() {
- line := scanner.Text()
- if line == "" {
- if !readMoves {
- readMoves = true
- continue
- }
- break
- }
- if !readMoves {
- network.moves = line
- network.paths = make(map[string]Directions)
- } else {
- fromParts := strings.Split(line, " = ")
- if len(fromParts) != 2 {
- log.Fatalf("Wrong number of fromParts: %s", line)
- }
- from := fromParts[0]
- parts := strings.Split(fromParts[1], ", ")
- if len(parts) != 2 {
- log.Fatalf("Wrong number of parts: %s", fromParts[1])
- }
- var directions Directions
- directions.left = strings.TrimLeft(parts[0], "(")
- directions.right = strings.TrimRight(parts[1], ")")
- network.paths[from] = directions
- if strings.HasSuffix(from, "A") {
- network.starts = append(network.starts, from)
- }
- }
- }
- return network
- }
- func atGoal(starts []string, goal string) bool {
- for i := range starts {
- if !strings.HasSuffix(starts[i], goal) {
- return false
- }
- }
- return true
- }
- func part(network Network, starts []string, goal string) int {
- steps := 0
- mod := len(network.moves)
- index := 0
- for {
- if atGoal(starts, goal) {
- break
- }
- for i := range starts {
- d := network.paths[starts[i]]
- if network.moves[index] == 'L' {
- starts[i] = d.left
- } else {
- starts[i] = d.right
- }
- }
- steps++
- index = (index + 1) % mod
- }
- return steps
- }
- func main() {
- if len(os.Args) < 2 {
- log.Fatal("You need to specify a file!")
- }
- filePath := os.Args[1]
- file, err := os.Open(filePath)
- if err != nil {
- log.Fatalf("Failed to open %s!\n", filePath)
- }
- network := readInput(file)
- fmt.Println("Part1:", part(network, []string{"AAA"}, "ZZZ"))
- fmt.Println("Part2:", part(network, network.starts, "Z"))
- }
|