aboutsummaryrefslogtreecommitdiff
path: root/2022/puzzle-3.lisp
diff options
context:
space:
mode:
authorAryadev Chavali <aryadev@aryadevchavali.com>2023-06-26 08:35:43 +0100
committerAryadev Chavali <aryadev@aryadevchavali.com>2023-06-26 10:33:39 +0100
commit33898c4eea337128e26fc5c7eaf245b12c8bd452 (patch)
tree525f32a7dd329fa49a6842b132a17f257af0c444 /2022/puzzle-3.lisp
parent8d5ce327e0b747bcab78741a8046e5bfd50a804e (diff)
downloaddotfiles-33898c4eea337128e26fc5c7eaf245b12c8bd452.tar.gz
dotfiles-33898c4eea337128e26fc5c7eaf245b12c8bd452.tar.bz2
dotfiles-33898c4eea337128e26fc5c7eaf245b12c8bd452.zip
(*->2022)~made it clear what advent of code I'm doing
Diffstat (limited to '2022/puzzle-3.lisp')
-rw-r--r--2022/puzzle-3.lisp67
1 files changed, 67 insertions, 0 deletions
diff --git a/2022/puzzle-3.lisp b/2022/puzzle-3.lisp
new file mode 100644
index 0000000..c5ee3d3
--- /dev/null
+++ b/2022/puzzle-3.lisp
@@ -0,0 +1,67 @@
+(defvar input (uiop:read-file-string "2022/3-input"))
+
+(defun split-string-in-two (s)
+ (let ((len (length s)))
+ (list (subseq s 0 (/ len 2)) (subseq s (/ len 2)))))
+
+(defvar inputs (with-input-from-string (s input)
+ (loop
+ for line = (read-line s nil)
+ until (null line)
+ collect (split-string-in-two line))))
+
+(defun string-to-clist (str)
+ (loop for char across str collect char))
+
+(defun common-types (s1 s2)
+ (car (intersection
+ (string-to-clist s1)
+ (string-to-clist s2))))
+
+(defvar shared (mapcar (lambda (x)
+ (destructuring-bind (s1 s2) x
+ (common-types s1 s2)))
+ inputs))
+
+(defun priority-map (c)
+ (if (upper-case-p c)
+ (+ 27 (- (char-code c) (char-code #\A)))
+ (+ 1 (- (char-code c) (char-code #\a)))))
+
+(defvar round-1-answer (reduce #'+ (mapcar #'priority-map shared)))
+
+;; Round 2
+
+;; Simple recursive algorithm which produces consecutive groups of 3 elements
+(defun group-by-3 (lst)
+ (if (null lst)
+ nil
+ (cons
+ (list (car lst) (car (cdr lst)) (car (cdr (cdr lst))))
+ (group-by-3 (cdr (cdr (cdr lst)))))))
+
+;; Note the use of group-by-3 here
+(defvar inputs (group-by-3
+ (with-input-from-string (s input)
+ (loop
+ for line = (read-line s nil)
+ until (null line)
+ collect line))))
+
+;; Extend intersection to three
+(defun common-types-3 (s1 s2 s3)
+ (car
+ (intersection
+ (string-to-clist s1)
+ (intersection
+ (string-to-clist s2)
+ (string-to-clist s3)))))
+
+;; Extend the destructuring bind and use of common-types-3
+(defvar shared (mapcar (lambda (x)
+ (destructuring-bind (s1 s2 s3) x
+ (common-types-3 s1 s2 s3)))
+ inputs))
+
+;; Same as before
+(defvar round-2-answer (reduce #'+ (mapcar #'priority-map shared)))