1.rkt 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  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 (simulate start end)
  26. (let loop ((i 0) (cur start))
  27. (if (string=? cur end)
  28. i
  29. (let ()
  30. (define instruction (next-instruction))
  31. (define mapping (hash-ref the-map cur))
  32. (define next
  33. (if (char=? instruction #\L)
  34. (car mapping)
  35. (cadr mapping)))
  36. (loop (+ 1 i) next)))))
  37. (simulate "AAA" "ZZZ")