2.rkt 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. #lang racket
  2. (require "../lib/utils.rkt")
  3. (define lines
  4. (call-with-input-file "input"
  5. (lambda (fp)
  6. (get-lines fp))))
  7. (define instructions (string->list (car lines)))
  8. (define (make-instruction-generator)
  9. (define cur instructions)
  10. (lambda ()
  11. (when (null? cur)
  12. (set! cur instructions))
  13. (define ret (car cur))
  14. (set! cur (cdr cur))
  15. ret))
  16. (define next-instruction (make-instruction-generator))
  17. (set! lines (cddr lines))
  18. (define (parse-map str)
  19. (define p1 (string-split str "="))
  20. (define key (string-trim (car p1)))
  21. (define val-str (string-trim (cadr p1)))
  22. (define value (list (substring val-str 1 4) (substring val-str 6 9)))
  23. (cons key value))
  24. (define the-map (make-hash (map parse-map lines)))
  25. (define (is-start? str)
  26. (char=? #\A (string-ref str 2)))
  27. (define (is-end? str)
  28. (char=? #\Z (string-ref str 2)))
  29. (define (simulate start)
  30. (let loop ((i 0) (cur start))
  31. (if (is-end? cur)
  32. i
  33. (let ()
  34. (define instruction (next-instruction))
  35. (define (next-point point)
  36. (define mapping (hash-ref the-map point))
  37. (if (char=? instruction #\L)
  38. (car mapping)
  39. (cadr mapping)))
  40. (loop (+ 1 i) (next-point cur))))))
  41. (define starts
  42. (let ()
  43. (define lst (hash->list the-map))
  44. (define keys (map car lst))
  45. (filter is-start? keys)))
  46. (apply lcm (map simulate starts))