aboutsummaryrefslogtreecommitdiffstats
path: root/year2021/day13/partboth.clj
blob: c24980d4ebbdf9861949eb05ce18ac3aa7511ec4 (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
(require '[clojure.string :as str])

(def input (->> (slurp "./in")
                (str/split-lines)
                (split-with not-empty)
                ((juxt
                  (fn [lst]
                    (reduce
                      #(conj %1 (mapv read-string (str/split %2 #",")))
                      #{} (first lst)))
                  (fn [lst]
                    (->> (second lst)
                         (drop 1)
                         (map #(-> %
                                   (str/split #"=")
                                   (update 0 (comp {\x 0 \y 1} last))
                                   (update 1 read-string)))
                         ))))))

(defn fold-point [idx chg pt]
  (cond-> pt (> (get pt idx) chg) (update idx #(- % (* 2 (- % chg))))))

(defn print-grid [pts]
  (let [xmax (inc (apply max (map first pts)))
        ymax (inc (apply max (map second pts)))]
    (doseq [y (range 0 ymax)]
      (println
        (str/join
          (for [x (range 0 xmax)] (if (contains? pts [x y]) \@ \ ))
          )))))

; Part 1
(let [instruction (first (second input))]
  (->> (first input)
       (map (partial fold-point (first instruction) (second instruction)))
       (distinct)
       (count)
       (println)))

; Part 2
(print-grid
  (apply
    (partial
      reduce
      #(let [ins (first %2)]
         (set (map (partial fold-point (first %2) (second %2)) %1))))
    input
    ))