123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100 |
- package main
- import (
- "bufio"
- "fmt"
- "log"
- "os"
- "strings"
- )
- type Directions struct {
- left string
- right string
- }
- type Network struct {
- moves string
- paths map[string]Directions
- }
- 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
- }
- }
- return network
- }
- func part1(network Network) int {
- steps := 0
- current := "AAA"
- mod := len(network.moves)
- index := 0
- for {
- if current == "ZZZ" {
- break
- }
- d := network.paths[current]
- if network.moves[index] == 'L' {
- current = d.left
- } else {
- current = d.right
- }
- index = (index + 1) % mod
- steps++
- }
- 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:", part1(network))
- }
|