aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorClyne Sullivan <clyne@bitgloo.com>2021-12-14 20:57:50 -0500
committerClyne Sullivan <clyne@bitgloo.com>2021-12-14 20:57:50 -0500
commit140fc0f3615003510fb8b9b99fdd4dda1270f041 (patch)
tree572252e7da9ec7a6c59dc75a567fe6d46f35d4ce
parent1faa513087b65bcb900380bd3675a230cefc0159 (diff)
day14: part2 final form
-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))))