From: Jack Kinsey Date: Sat, 7 Dec 2019 05:04:44 +0000 (-0500) Subject: Fix day6pt1 and add correct day6pt2 X-Git-Url: http://git.jkinsey.net/?a=commitdiff_plain;h=3e582bb0fb4157522ea83df9a990079fa356c470;p=adventofcode2019.git Fix day6pt1 and add correct day6pt2 --- diff --git a/project.clj b/project.clj index fe88a58..df6ecc5 100644 --- a/project.clj +++ b/project.clj @@ -4,6 +4,7 @@ ;;:license {:name "EPL-2.0 OR GPL-2.0-or-later WITH Classpath-exception-2.0" ;; :url "https://www.eclipse.org/legal/epl-2.0/"} :dependencies [[org.clojure/clojure "1.10.0"] + [org.clojure/core.match "0.3.0"] [org.clojure/math.combinatorics "0.1.6"]] :main ^:skip-aot adventofcode2019.core :target-path "target/%s" diff --git a/src/adventofcode2019/day06.clj b/src/adventofcode2019/day06.clj index 1d67336..9288692 100644 --- a/src/adventofcode2019/day06.clj +++ b/src/adventofcode2019/day06.clj @@ -2,16 +2,37 @@ [:require [adventofcode2019.lib :refer :all] [clojure.string :as str]]) -;; FIXME: is the input guaranteed in-order? (defn a-orbits-b [orbits-map [b a]] (if (contains? orbits-map b) - (-> (assoc orbits-map a {:parent b, :children [], :depth (inc (:depth b))}) + (-> (assoc orbits-map a {:parent b, :children (get-in orbits-map [a :children] [])}) (update-in [b :children] conj a)) - (-> (assoc orbits-map b {:parent nil, :children [], :depth 0}) + (-> (assoc orbits-map b {:parent nil, :children []}) (a-orbits-b [b a])))) +(defn distances-from [tree node] + (letfn [(path-rc [dist tree node] + (let [seen? #(some? (get-in tree [% :dist])) + neighbors (remove (some-fn nil? seen?) + (cons (get-in tree [node :parent]) + (get-in tree [node :children])))] + (as-> tree it + (assoc-in it [node :dist] dist) + (reduce #(path-rc (inc dist) %1 %2) it neighbors))))] + (path-rc 0 tree node))) + +(defn assign-depth [tree] + (let [is-root? #(nil? (get-in tree [% :parent])) + root (first (filter is-root? (keys tree)))] + (letfn [(depth-rc [depth tree root] + (as-> tree it + (assoc-in it [root :depth] depth) + (reduce #(depth-rc (inc depth) %1 %2) + it (get-in tree [root :children]))))] + (depth-rc 0 tree root)))) + (defn day06 [] - (let [input (map #(str/split % #")") (get-list-from-file (input-file))) - orbits-map (reduce a-orbits-b {} input)] - (part1 (reduce + (map :depth orbits-map))) - #_(part2))) + (let [input (map #(str/split % #"\)") (get-list-from-file (input-file))) + orbits-map (reduce a-orbits-b {} input) + with-depths (assign-depth orbits-map)] + (part1 (reduce + (map :depth (vals with-depths)))) + (part2 (- (get-in (distances-from orbits-map "YOU") ["SAN" :dist]) 2)))) diff --git a/src/adventofcode2019/template.clj b/src/adventofcode2019/template.clj index 2e58ab0..9e8d2b5 100644 --- a/src/adventofcode2019/template.clj +++ b/src/adventofcode2019/template.clj @@ -1,6 +1,7 @@ (ns adventofcode2019.day00 [:require [adventofcode2019.lib :refer :all] [clojure.string :as str] + [clojure.core.match :refer [match]] [clojure.math.combinatorics :as combo]]) (defn day00 []