diff options
author | Clyne Sullivan <clyne@bitgloo.com> | 2022-11-30 19:55:31 -0500 |
---|---|---|
committer | Clyne Sullivan <clyne@bitgloo.com> | 2022-11-30 19:55:31 -0500 |
commit | 8d43e37df99f280377bed90284d6ac2428334804 (patch) | |
tree | 3a5042c9af29da52b4bac38fd78b3ccde77a1dbc /day17 | |
parent | 66ed0b9d27850dc653abc8baa75884f3de311bfa (diff) |
move 2021 days to folder; update README
Diffstat (limited to 'day17')
-rw-r--r-- | day17/part3.clj | 59 | ||||
-rw-r--r-- | day17/partboth.clj | 54 |
2 files changed, 0 insertions, 113 deletions
diff --git a/day17/part3.clj b/day17/part3.clj deleted file mode 100644 index ae51260..0000000 --- a/day17/part3.clj +++ /dev/null @@ -1,59 +0,0 @@ -; -; -; Put into a lein project so that you can pass Java more RAM (e.g. -Xmx15G) -; https://www.reddit.com/r/adventofcode/comments/riqtwx/2021_day_17_day_17_part_3/ -; -; - -(require '[clojure.core.reducers :as r]) - -(def target-area [[20000 -5000] [30000 -10000]]) -(def initial-pos [0 0]) - -(defn beyond-target? [[[tbx tby] [tex tey]] [x y]] - (or (> x tex) (< y tey))) - -(defn within-target? [[[tbx tby] [tex tey]] [x y]] - (and (>= x tbx) (<= x tex) (<= y tby) (>= y tey))) - -(defn apply-velocity [[[px py] [vx vy]]] - [[(+ px vx) (+ py vy)] [(cond-> vx (pos? vx) dec) (dec vy)]]) - -(defn take-last-while [pred coll] - (loop [v (first coll) r (rest coll)] - (if (not (pred (first r))) - v - (recur (first r) (rest r))))) - -(defn build-path [target vel] - (->> (iterate apply-velocity [initial-pos vel]) - (take-last-while (comp not (partial beyond-target? target) first)) - (first))) - -; Used to determine best x velocity for highest path -(def tnum-seq (iterate #(do [(apply + %) (inc (second %))]) [0 1])) - -(let [[tb te] target-area - lowest-x (second (last (take-while #(< (first %) (first tb)) tnum-seq))) - highest-y (dec (Math/abs (second te)))] - (->> (for [y (range (second te) (inc highest-y)) - x (range lowest-x (inc (first te)))] [x y]) - (#(do (println "Generated xy pairs...") %)) - (#(do (println "Total: " (* (- highest-y (second te)) (- (inc highest-y) lowest-x))) %)) - (partition 1000000) - (#(do (println "Prepared partitions...") %)) - (reduce - (fn [sum nlst] - (println sum) - (+ sum - (r/fold + - (r/monoid - (fn [tot xy] - (cond-> tot - (within-target? target-area (build-path target-area xy)) - inc)) - (constantly 0)) - (into [] nlst)))) - 0) - (println))) - diff --git a/day17/partboth.clj b/day17/partboth.clj deleted file mode 100644 index c585bf9..0000000 --- a/day17/partboth.clj +++ /dev/null @@ -1,54 +0,0 @@ -(require '[clojure.core.reducers :as r]) - -;(def target-area [[169 -68] [206 -108]]) -(def target-area [[20000 -5000] [30000 -10000]]) -;(def target-area [[2000 -500] [3000 -1000]]) -(def initial-pos [0 0]) - -(defn beyond-target? [[[tbx tby] [tex tey]] [x y]] - (or (> x tex) (< y tey))) - -(defn within-target? [[[tbx tby] [tex tey]] [x y]] - (and (>= x tbx) (<= x tex) (<= y tby) (>= y tey))) - -(defn apply-velocity [[[px py] [vx vy]]] - [[(+ px vx) (+ py vy)] [(cond-> vx (pos? vx) dec) (dec vy)]]) - -(defn take-last-while [pred coll] - (loop [v (first coll) r (rest coll)] - (if (not (pred (first r))) - v - (recur (first r) (rest r))))) - -(defn build-path [target vel] - (->> (iterate apply-velocity [initial-pos vel]) - (take-last-while (comp not (partial beyond-target? target) first)) - (first))) - -; Used to determine best x velocity for highest path -(def tnum-seq (iterate #(do [(apply + %) (inc (second %))]) [0 1])) - -(let [[tb te] target-area - lowest-x (second (last (take-while #(< (first %) (first tb)) tnum-seq))) - highest-y (dec (Math/abs (second te)))] - (->> (for [y (range (second te) (inc highest-y)) - x (range lowest-x (inc (first te)))] [x y]) - (#(do (println "Generated xy pairs...") %)) - (#(do (println "Total: " (* (- highest-y (second te)) (- (inc highest-y) lowest-x))) %)) - (partition 50000) - (#(do (println "Prepared partitions...") %)) - (reduce - (fn [sum nlst] - (println sum) - (+ sum - (r/fold + - (r/monoid - (fn [tot xy] - (cond-> tot - (within-target? target-area (build-path target-area xy)) - inc)) - (constantly 0)) - (into [] nlst)))) - 0) - (println))) - |