Skip to content

Commit 31cd1cd

Browse files
committed
2024d18 litt refaktorering
1 parent 845b9a5 commit 31cd1cd

File tree

1 file changed

+12
-18
lines changed

1 file changed

+12
-18
lines changed

notebooks/y2024/d18.clj

+12-18
Original file line numberDiff line numberDiff line change
@@ -55,14 +55,14 @@
5555
; og som er blokkert av `corrupted-locations`:
5656

5757
(defn find-path [[dimy dimx :as _dimensions] corrupted-locations]
58-
(let [in-bounds? (fn [[y x]]
59-
(and (>= dimy y 0)
60-
(>= dimx x 0)))]
58+
(let [out-of-bounds? (fn [[y x]]
59+
(not (and (>= dimy y 0)
60+
(>= dimx x 0))))]
6161
(ua/shortest-path
6262
(fn [node]
6363
(->> (apply utils/adjacent-hv node)
6464
(remove (some-fn corrupted-locations
65-
(complement in-bounds?)))
65+
out-of-bounds?))
6666
(map (fn [x] {:dest x}))))
6767
[0 0] [dimy dimx])))
6868

@@ -111,20 +111,14 @@
111111
corrupted-locations (corrupted-locations input)]
112112
(->> (nth corrupted-locations
113113
(loop [[start end] [0 num-bytes]]
114-
(if (>= 1 (- end start))
115-
(first (filter (fn [x]
116-
(find-path dimensions (set (take x corrupted-locations))))
117-
[start end]))
118-
(let [middle (int (+ (/ (- end start) 2) start))
119-
corrupted-locations-start (set (take start corrupted-locations))
120-
corrupted-locations-middle (set (take middle corrupted-locations))
121-
corrupted-locations-end (set (take end corrupted-locations))
122-
res-start (find-path dimensions corrupted-locations-start)
123-
res-middle (find-path dimensions corrupted-locations-middle)
124-
res-end (find-path dimensions corrupted-locations-end)]
125-
(cond
126-
(= nil res-end res-middle) (recur [start middle])
127-
(and res-start res-middle) (recur [middle end]))))))
114+
(let [middle (int (+ (/ (- end start) 2) start))
115+
results (->> [start middle end]
116+
(map #(some? (find-path dimensions (set (take % corrupted-locations))))))
117+
index-result (zipmap [start middle end] results)]
118+
(if (= 2 (count index-result))
119+
(first (keep (fn [[k v]] (when v k)) index-result))
120+
(recur [(last (filter index-result [start middle end]))
121+
(first (remove index-result [start middle end]))])))))
128122
reverse
129123
(map str)
130124
(String/join ","))))

0 commit comments

Comments
 (0)