1.rkt 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. #lang racket
  2. (require "../lib/utils.rkt")
  3. (define lines
  4. (call-with-input-file "input"
  5. (λ (fp) (get-lines fp))))
  6. (define mat (list->vector lines))
  7. (define (char-at x y)
  8. (string-ref (vector-ref mat y) x))
  9. (define (set-mat! x y c)
  10. (string-set! (vector-ref mat y) x c))
  11. (define (move-stone x1 y1 x2 y2)
  12. (define t (char-at x1 y1))
  13. (set-mat! x1 y1 (char-at x2 y2))
  14. (set-mat! x2 y2 t))
  15. (define (find-new-pos x y)
  16. (let loop ((new-y y))
  17. (if (or (= new-y 0)
  18. (not (char=? #\. (char-at x (- new-y 1)))))
  19. new-y
  20. (loop (- new-y 1)))))
  21. (define height (vector-length mat))
  22. (define width (string-length (vector-ref mat 0)))
  23. (define (tilt)
  24. (do ((y 0 (+ y 1)))
  25. ((>= y height) (void))
  26. (do ((x 0 (+ x 1)))
  27. ((>= x width) (void))
  28. (when (char=? #\O (char-at x y))
  29. (move-stone x y x (find-new-pos x y))))))
  30. (define (count)
  31. (define sum 0)
  32. (do ((y 0 (+ y 1)))
  33. ((>= y height) (void))
  34. (do ((x 0 (+ x 1)))
  35. ((>= x width) (void))
  36. (when (char=? #\O (char-at x y))
  37. (set! sum (+ sum (- height y))))))
  38. sum)
  39. (tilt)
  40. (count)