aboutsummaryrefslogtreecommitdiff
path: root/aoc2021/day-15/day-15.rkt
diff options
context:
space:
mode:
authorH.J <thechairman@thechairman.info>2024-10-09 11:36:55 -0400
committerH.J <thechairman@thechairman.info>2024-10-09 11:36:55 -0400
commit8777ff071f7bb37631baa7b6717ad29961e50911 (patch)
tree6d59c4ed58e454b960339c3d1151f0a879e8d7cb /aoc2021/day-15/day-15.rkt
parent6156a9ef7be4012063a042aafb4e9b0d7eadde8e (diff)
downloadgleam_aoc-8777ff071f7bb37631baa7b6717ad29961e50911.tar.gz
gleam_aoc-8777ff071f7bb37631baa7b6717ad29961e50911.zip
sorting by language
Diffstat (limited to 'aoc2021/day-15/day-15.rkt')
-rw-r--r--aoc2021/day-15/day-15.rkt50
1 files changed, 0 insertions, 50 deletions
diff --git a/aoc2021/day-15/day-15.rkt b/aoc2021/day-15/day-15.rkt
deleted file mode 100644
index 6ab67b1..0000000
--- a/aoc2021/day-15/day-15.rkt
+++ /dev/null
@@ -1,50 +0,0 @@
-#lang racket
-(require advent-of-code
- threading
- graph)
-
-(struct Point (x y) #:transparent)
-
-(define data
- (for/fold ([cells (hash)])
- ([row (in-lines (open-aoc-input (find-session) 2021 15 #:cache #true))] [x (in-naturals)])
- (for/fold ([cells cells]) ([n (in-string row)] [y (in-naturals)])
- (hash-set cells (Point x y) (~> n string string->number)))))
-
-(define x-max (~>> data hash-keys (map Point-x) (apply max)))
-(define y-max (~>> data hash-keys (map Point-y) (apply max)))
-
-(define (neighbors pt d)
- (match-define (Point x y) pt)
- (~>> (list (Point (add1 x) y) (Point (sub1 x) y) (Point x (add1 y)) (Point x (sub1 y)))
- (filter (curry hash-has-key? d))))
-
-(define (grid-graph d)
- (weighted-graph/directed (for*/list ([coord (in-list (hash-keys d))]
- [neighbor (in-list (neighbors coord d))]
- [weight (in-value (hash-ref d neighbor))])
- (list weight coord neighbor))))
-
-;; part 1
-(define (find-path-weight d)
- (define grid (grid-graph d))
- (let-values ([(node-distances _) (dijkstra grid (Point 0 0))])
- (define xm (~>> d hash-keys (map Point-x) (apply max)))
- (define ym (~>> d hash-keys (map Point-y) (apply max)))
- (hash-ref node-distances (Point xm ym))))
-
-(~> data find-path-weight time)
-
-;; part 2
-(define nine-cycle (in-cycle (inclusive-range 1 9)))
-
-(define (expand-data data)
- (for/fold ([cells (hash)]) ([coord (in-list (hash-keys data))])
- (match-define (Point x y) coord)
- (for*/fold ([cells cells])
- ([n (in-range 5)] [m (in-range 5)] [val (in-value (hash-ref data coord))])
- (hash-set cells
- (Point (+ x (* n (add1 x-max))) (+ y (* m (add1 y-max))))
- (sequence-ref nine-cycle (+ val n m -1))))))
-
-(~> data expand-data find-path-weight time)