1.rkt 1.1 KB

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