aboutsummaryrefslogtreecommitdiffstats
path: root/AoC2022/15/solver.lisp
diff options
context:
space:
mode:
authorOscar Najera <hi@oscarnajera.com>2022-12-17 12:13:23 +0100
committerOscar Najera <hi@oscarnajera.com>2022-12-17 12:13:23 +0100
commit974ca5cf0f2979e03543816aabd54a51f9b3a071 (patch)
tree6da0f732dc3e9375b92fdc1eaae6bf9299ffc139 /AoC2022/15/solver.lisp
parent5c57053cda2d5e3ee88d6c146ae6d00026014fc1 (diff)
downloadscratch-974ca5cf0f2979e03543816aabd54a51f9b3a071.tar.gz
scratch-974ca5cf0f2979e03543816aabd54a51f9b3a071.tar.bz2
scratch-974ca5cf0f2979e03543816aabd54a51f9b3a071.zip
cl draw example
Diffstat (limited to 'AoC2022/15/solver.lisp')
-rw-r--r--AoC2022/15/solver.lisp53
1 files changed, 53 insertions, 0 deletions
diff --git a/AoC2022/15/solver.lisp b/AoC2022/15/solver.lisp
new file mode 100644
index 0000000..3d4fafd
--- /dev/null
+++ b/AoC2022/15/solver.lisp
@@ -0,0 +1,53 @@
+(ql:quickload '(fiveam str cl-ppcre arrows uiop))
+
+
+(setf markers
+ (loop for line in (uiop:read-file-lines "eg-in")
+ for (sx sy bx by) = (multiple-value-bind (match values)
+ (cl-ppcre:scan-to-strings "Sensor at x=(-?\\d+), y=\(-?\\d+\): closest beacon is at x=(-?\\d+), y=(-?\\d+)"
+ line)
+ (map 'list #'parse-integer values))
+ nconc (list (cons sx sy) (cons bx by))))
+
+(defun bounds (markers)
+ (list (list
+ (loop for (x . y) in markers minimize x)
+ (loop for (x . y) in markers maximize x))
+ (list
+ (loop for (x . y) in markers minimize y)
+ (loop for (x . y) in markers maximize y))))
+
+(defun grid (bounds)
+ (destructuring-bind ((xmin xmax) (ymin ymax)) bounds
+ (make-array (* (- xmax xmin -1) (- ymax ymin -1)) :initial-element 0 :element-type '(unsigned-byte 2))))
+
+(defun in-grid (bounds)
+ (destructuring-bind ((xmin xmax) (ymin ymax)) bounds
+ (let ((stride (- xmax xmin -1)))
+ (lambda (x y)
+ (when (and (<= xmin x xmax) (<= ymin y ymax))
+ (+ (- x xmin) (* (- y ymin) stride)))))))
+
+
+(defun draw-grid (grid stride)
+ (let ((out (make-string-output-stream)))
+ (loop for elt across grid
+ for idx from 0
+ do (progn (when (= 0 (mod idx stride)) (terpri out))
+ (princ (case elt
+ (0 ".")
+ (1 "S")
+ (2 "B")) out)))
+ (get-output-stream-string out)))
+
+(let* ((bounds (bounds markers))
+ (loc (in-grid bounds))
+ (grid (grid bounds)))
+ (loop for ((sx . sy) (bx . by)) on markers by #'cddr
+ do (progn (princ (list sx sy bx by))
+ (setf (aref grid (funcall loc sx sy)) 1)
+ (setf (aref grid (funcall loc bx by)) 2)))
+ (destructuring-bind ((xmin xmax) a) bounds
+ (princ (draw-grid grid (- xmax xmin -1)))
+ )
+ )