|
55 | 55 | ; og som er blokkert av `corrupted-locations`:
|
56 | 56 |
|
57 | 57 | (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))))] |
61 | 61 | (ua/shortest-path
|
62 | 62 | (fn [node]
|
63 | 63 | (->> (apply utils/adjacent-hv node)
|
64 | 64 | (remove (some-fn corrupted-locations
|
65 |
| - (complement in-bounds?))) |
| 65 | + out-of-bounds?)) |
66 | 66 | (map (fn [x] {:dest x}))))
|
67 | 67 | [0 0] [dimy dimx])))
|
68 | 68 |
|
|
111 | 111 | corrupted-locations (corrupted-locations input)]
|
112 | 112 | (->> (nth corrupted-locations
|
113 | 113 | (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]))]))))) |
128 | 122 | reverse
|
129 | 123 | (map str)
|
130 | 124 | (String/join ","))))
|
|
0 commit comments