123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207 |
- package main
- import (
- "bufio"
- "fmt"
- "log"
- "os"
- )
- type blueprint struct {
- id int
- oreCost int
- clayCost int
- obsidianCost [2]int
- geodeCost [2]int
- }
- func readInput(file *os.File) []blueprint {
- scanner := bufio.NewScanner(file)
- var blueprints []blueprint
- for scanner.Scan() {
- line := scanner.Text()
- if line == "" {
- continue
- }
- var current blueprint
- n, err := fmt.Sscanf(line, "Blueprint %d: Each ore robot costs %d ore. Each clay robot costs %d ore. Each obsidian robot costs %d ore and %d clay. Each geode robot costs %d ore and %d obsidian.", ¤t.id, ¤t.oreCost, ¤t.clayCost, ¤t.obsidianCost[0], ¤t.obsidianCost[1], ¤t.geodeCost[0], ¤t.geodeCost[1])
- if n != 7 || err != nil {
- log.Fatal("Can't parse:", line, err)
- }
- blueprints = append(blueprints, current)
- }
- return blueprints
- }
- type inventory struct {
- ore int
- clay int
- obsidian int
- geode int
- }
- func canProduceClay(plan blueprint, resources inventory) bool {
- return resources.ore >= plan.clayCost
- }
- func produceClay(plan blueprint, resources inventory) inventory {
- resources.ore -= plan.clayCost
- return resources
- }
- func canProduceObsidian(plan blueprint, resources inventory) bool {
- return resources.ore >= plan.obsidianCost[0] && resources.clay >= plan.obsidianCost[1]
- }
- func produceObsidian(plan blueprint, resources inventory) inventory {
- resources.ore -= plan.obsidianCost[0]
- resources.clay -= plan.obsidianCost[1]
- return resources
- }
- func canProduceGeode(plan blueprint, resources inventory) bool {
- return resources.ore >= plan.geodeCost[0] && resources.obsidian >= plan.geodeCost[1]
- }
- func produceGeode(plan blueprint, resources inventory) inventory {
- resources.ore -= plan.geodeCost[0]
- resources.obsidian -= plan.geodeCost[1]
- return resources
- }
- func produce(robots inventory, resources inventory) inventory {
- resources.ore += robots.ore
- resources.clay += robots.clay
- resources.obsidian += robots.obsidian
- resources.geode += robots.geode
- return resources
- }
- func shouldProduceClay(plan blueprint, robots inventory, resources inventory) bool {
- if robots.clay == 0 {
- return true
- }
- countWithout := 0
- without := resources
- for {
- if canProduceObsidian(plan, without) {
- break
- }
- without = produce(robots, without)
- countWithout++
- }
- countWith := 0
- with := resources
- with = produceClay(plan, with)
- robots.clay++
- for {
- if canProduceObsidian(plan, with) {
- break
- }
- with = produce(robots, with)
- countWith++
- }
- return countWith < countWithout
- }
- func shouldProduceObsidian(plan blueprint, robots inventory, resources inventory) bool {
- if robots.obsidian == 0 {
- return true
- }
- countWithout := 0
- without := resources
- for {
- if canProduceGeode(plan, without) {
- break
- }
- without = produce(robots, without)
- countWithout++
- }
- countWith := 0
- with := resources
- with = produceObsidian(plan, with)
- robots.obsidian++
- for {
- if canProduceGeode(plan, with) {
- break
- }
- with = produce(robots, with)
- countWith++
- }
- return countWith < countWithout
- }
- func checkPlan(plan blueprint) int {
- var robots inventory
- robots.ore++
- var resources inventory
- for i := 0; i < 24; i++ {
- newRobots := robots
- if canProduceGeode(plan, resources) {
- newRobots.geode++
- resources = produceGeode(plan, resources)
- }
- if canProduceObsidian(plan, resources) {
- if shouldProduceObsidian(plan, robots, resources) {
- newRobots.obsidian++
- resources = produceObsidian(plan, resources)
- }
- }
- if canProduceClay(plan, resources) {
- if shouldProduceClay(plan, robots, resources) {
- newRobots.clay++
- resources = produceClay(plan, resources)
- }
- }
- resources = produce(robots, resources)
- fmt.Println(plan.id, i+1, robots, resources)
- robots = newRobots
- }
- fmt.Println(plan.id, resources.geode)
- return resources.geode * plan.id
- }
- func part1(blueprints []blueprint) int {
- sum := 0
- for i := range blueprints {
- sum += checkPlan(blueprints[i])
- }
- return sum
- }
- 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)
- }
- blueprints := readInput(file)
- fmt.Println("Part1:", part1(blueprints))
- }
|