blob: 813b816af840d7614509b2e9f910dcad55b600da (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
(require '[clojure.string :as str])
(def input (->> (slurp "./in2")
str/split-lines
((juxt
first
(fn [lines]
(->> lines
(drop 2)
(map #(str/split % #" -> "))
(flatten)
(apply (partial assoc {}))
))))))
(def blank-map
(reduce
#(assoc %1 %2 0)
{}
(keys (second input))))
(defn grow-polymer [polymer insertion-rules]
(reduce
(fn [res pair]
(let [pk (key pair)
p1 (str/join [(first pk) (insertion-rules pk)])
p2 (str/join [(insertion-rules pk) (second pk)])]
(-> res (update p1 + (val pair)) (update p2 + (val pair)))
))
blank-map
(filter #(pos? (val %)) polymer)
))
(def growth-seq
(iterate
#(grow-polymer % (second input))
(reduce
#(update %1 %2 inc)
blank-map
(for [i (range 0 (dec (count (first input))))]
(subs (first input) i (+ i 2))))))
(let [results
(map #(Math/ceil (/ % 2))
(vals
(reduce
(fn [r p] (-> r
(update (first (key p)) #(if (nil? %) (val p) (+ % (val p))))
(update (second (key p)) #(if (nil? %) (val p) (+ % (val p))))))
{}
(nth growth-seq 40))))]
(println (- (apply max results) (apply min results))))
|