From 6feb1f428adcc7274a24150e5d0d507a084ebaba Mon Sep 17 00:00:00 2001 From: Karl Spickermann Date: Tue, 20 Dec 2022 02:29:54 +0100 Subject: [PATCH] Day19 --- day19/day19.go | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/day19/day19.go b/day19/day19.go index 24ee665..e4bf6c5 100644 --- a/day19/day19.go +++ b/day19/day19.go @@ -23,8 +23,8 @@ type Blueprint struct { func main() { //args := os.Args[1:] lines := helper.ReadTextFile("day19/input") - highestGeode := make([]int, len(lines)) - for i, line := range lines { + highestGeode := make([]int, len(lines[:3])) + for i, line := range lines[:3] { blueprint := getBluePrint(line) highestGeodeLine := 0 for j := 0; j < 50; j++ { @@ -36,9 +36,9 @@ func main() { highestGeode[i] = highestGeodeLine fmt.Println(highestGeode[i]) } - sum := 0 - for i, score := range highestGeode { - sum += (i + 1) * score + sum := 1 + for _, score := range highestGeode { + sum *= score } fmt.Println(highestGeode) fmt.Println(sum) @@ -98,13 +98,13 @@ func step(activeStates *map[[4]int]State, fastestTImeToObsidian *State, untilEle func stepHighestGeode(activeStates *map[[4]int]State, endStates *[]State, blueprint *Blueprint) { newTmpStates := generatePossibleTmpStates(activeStates, blueprint) for _, tmpState := range newTmpStates { - if tmpState.runtime < 24 && !checkOptimal(tmpState, blueprint) { + if tmpState.runtime < 32 && !checkOptimal(tmpState, blueprint) { identifier := getIdentifier(tmpState) elem, ok := (*activeStates)[identifier] if !ok || elem.runtime > tmpState.runtime || (elem.runtime == tmpState.runtime && checkBetterRessources(tmpState, elem)) { (*activeStates)[identifier] = tmpState } - } else if tmpState.runtime > 24 { + } else if tmpState.runtime > 32 { fmt.Println("WTF") } else { *endStates = append(*endStates, tmpState)