aboutsummaryrefslogtreecommitdiffstats
path: root/day14/part2.clj
diff options
context:
space:
mode:
authorClyne Sullivan <clyne@bitgloo.com>2021-12-15 12:03:47 -0500
committerClyne Sullivan <clyne@bitgloo.com>2021-12-15 12:03:47 -0500
commitaed41aa1f74252bb8a14f1750c2a6f27916795c8 (patch)
treef22bb8d5954d9a7ba1a162a33e08140b695c5810 /day14/part2.clj
parent453a97b8133c72490785dbc48e68d2dd102974f8 (diff)
parentd1bb4af495094eec997cbe7e99a382877c7c7b5a (diff)
add day 15
Diffstat (limited to 'day14/part2.clj')
-rw-r--r--day14/part2.clj20
1 files changed, 9 insertions, 11 deletions
diff --git a/day14/part2.clj b/day14/part2.clj
index ede1b32..f5de5fe 100644
--- a/day14/part2.clj
+++ b/day14/part2.clj
@@ -10,8 +10,8 @@
(->> lines
(drop 2)
(map #(str/split % #" -> "))
- (map (fn [[pair ltr]]
- {pair (map str/join [[(first pair) ltr] [ltr (second pair)]])}))
+ (map (fn [[[a b] c]]
+ {(str/join [a b]) (map str/join [[a c] [c b]])}))
(reduce into)
))))))
@@ -28,13 +28,11 @@
(iterate #(grow-polymer % (second input))
(reduce #(update %1 %2 inc) blank-map (first input))))
-(let [polymer (nth growth-seq 40)
- results (filter pos?
- (map #(Math/ceil (/ % 2))
- (vals
- (reduce
- #(let [k (key %2) v (val %2)] (-> %1 (update (first k) + v) (update (second k) + v)))
- (zipmap (flatten (map (partial split-at 1) (keys polymer))) (repeat 0))
- polymer))))]
- (println (- (apply max results) (apply min results))))
+(let [final-polymer (nth growth-seq 40)
+ letter-counts (reduce
+ (fn [r [k v]] (-> r (update (first k) + v) (update (second k) + v)))
+ (zipmap (str/join (keys final-polymer)) (repeat 0))
+ final-polymer)
+ unique-counts (filter pos? (map #(Math/ceil (/ (val %) 2)) letter-counts))]
+ (println (- (apply max unique-counts) (apply min unique-counts))))