2.rkt 1.4 KB

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