2.scm 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. (import (chicken string))
  2. (import (chicken io))
  3. (import (chicken sort))
  4. (import matchable)
  5. (import srfi-1)
  6. (import regex)
  7. (define input
  8. (with-input-from-file "input"
  9. (lambda ()
  10. (let loop ((ret '()))
  11. (let ((line (read-line)))
  12. (if (eof-object? line)
  13. (reverse ret)
  14. (loop (cons line ret))))))))
  15. (define (transpose in)
  16. (define cols (string-length (car in)))
  17. (let loop ((i 0) (ret '()))
  18. (if (>= i cols)
  19. (reverse ret)
  20. (loop (+ i 1) (cons (list->string (map (lambda (x) (string-ref x i))
  21. in))
  22. ret)))))
  23. (define (flip in)
  24. (define (flip-row row)
  25. (list->string (reverse (string->list row))))
  26. (map flip-row in))
  27. (define (char-at in x y)
  28. (string-ref (list-ref in y) x))
  29. (define (check-xmas mat x y)
  30. (and (equal? #\M (char-at mat x y))
  31. (equal? #\M (char-at mat x (+ 2 y)))
  32. (equal? #\S (char-at mat (+ x 2) y))
  33. (equal? #\S (char-at mat (+ x 2) (+ y 2)))
  34. (equal? #\A (char-at mat (+ x 1) (+ y 1)))))
  35. (define (count-mat mat)
  36. (define count 0)
  37. (define width (string-length (car mat)))
  38. (define height (length mat))
  39. (do ((x 0 (+ 1 x)))
  40. ((>= x (- width 2)) #f)
  41. (do ((y 0 (+ 1 y)))
  42. ((>= y (- height 2)) #f)
  43. (if (check-xmas mat x y)
  44. (set! count (+ 1 count))
  45. #f)))
  46. count)
  47. (define mat-list
  48. (list input (flip input)
  49. (transpose input) (flip (transpose input))))
  50. (display (apply + (map count-mat mat-list)))
  51. (newline)