Bläddra i källkod

solve advent of code 2023 06 part1

Mistivia 1 år sedan
förälder
incheckning
e482c6c5da
2 ändrade filer med 35 tillägg och 0 borttagningar
  1. 32 0
      advent-of-code/2023/06/1.rkt
  2. 3 0
      advent-of-code/2023/06/input

+ 32 - 0
advent-of-code/2023/06/1.rkt

@@ -0,0 +1,32 @@
+#lang racket
+
+(define in (open-input-file "input"))
+
+(define (read-num-list)
+   (define line (read-line in))
+   (map
+       string->number
+       (string-split
+           (cadr (string-split (string-trim line) ":")))))
+
+(define times (read-num-list))
+(define distances (read-num-list))
+
+(define games (map cons times distances))
+
+(define (calc time hold-time)
+    (* hold-time (- time hold-time)))
+
+(define (solve time distance)
+    (define (loop counter hold-time)
+        (if (> hold-time time)
+            counter
+            (if (> (calc time hold-time) distance)
+                (loop (+ 1 counter) (+ 1 hold-time))
+                (loop counter (+ 1 hold-time)))))
+    (loop 0 0))
+
+(display (apply * (map 
+                     (lambda (x) (solve (car x) (cdr x)))
+                     games)))
+(newline)

+ 3 - 0
advent-of-code/2023/06/input

@@ -0,0 +1,3 @@
+Time:        59     70     78     78
+Distance:   430   1218   1213   1276
+