aboutsummaryrefslogtreecommitdiffstats
path: root/day21
diff options
context:
space:
mode:
authorClyne Sullivan <clyne@bitgloo.com>2021-12-21 13:03:03 -0500
committerClyne Sullivan <clyne@bitgloo.com>2021-12-21 13:03:03 -0500
commite01c3a36945c41214df37d4822d341404d6802e9 (patch)
tree42a3198e98a4523ed17455e1018c29c53346768c /day21
parent384079cb4dd4499d50ca17d1ee4fdd8dafdcd79b (diff)
day21: add part 2
Diffstat (limited to 'day21')
-rw-r--r--day21/part2.clj30
1 files changed, 30 insertions, 0 deletions
diff --git a/day21/part2.clj b/day21/part2.clj
new file mode 100644
index 0000000..86362f4
--- /dev/null
+++ b/day21/part2.clj
@@ -0,0 +1,30 @@
+(def rolls {3 1 4 3 5 6 6 7 7 6 8 3 9 1})
+
+(defn advance-pos [pos roll] (let [n (+ pos roll)] (if (> n 10) (- n 10) n)))
+
+(defn add-roll [state roll p1-turn]
+ (let [pos (if p1-turn :pos1 :pos2)
+ score (if p1-turn :score1 :score2)
+ new-pos (advance-pos (state pos) roll)]
+ (-> state
+ (assoc pos new-pos)
+ (update score + new-pos))))
+
+(defonce wins (atom [0 0]))
+
+(loop [turn 0 states {{:pos1 10 :score1 0 :pos2 1 :score2 0} 1}]
+ (if (empty? states)
+ (println (apply max @wins))
+ (recur
+ (if (= 0 turn) 1 0)
+ (reduce
+ #(let [kvp (first %2)]
+ (if (< ((key kvp) (if (= 0 turn) :score1 :score2)) 21)
+ (if (contains? %1 (key kvp))
+ (update %1 (key kvp) + (val kvp))
+ (conj %1 kvp))
+ (do (swap! wins update turn +' (val kvp)) %1)))
+ {}
+ (for [s states r rolls]
+ {(add-roll (first s) (key r) (= 0 turn)) (*' (second s) (val r))})))))
+