1.scm 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  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 (diag in)
  30. (define width (string-length (car in)))
  31. (define height (length in))
  32. (define (diag-start-at x y)
  33. (let loop ((cur-row y) (cur-col x) (ret '()))
  34. (if (or (< cur-col 0)
  35. (>= cur-row height))
  36. (list->string (reverse ret))
  37. (loop (+ cur-row 1)
  38. (- cur-col 1)
  39. (cons (char-at in cur-col cur-row) ret)))))
  40. (define (row-diag in)
  41. (let loop ((i 0) (ret '()))
  42. (if (>= i width)
  43. (reverse ret)
  44. (loop (+ 1 i) (cons (diag-start-at i 0) ret)))))
  45. (define (col-diag in)
  46. (let loop ((i 1) (ret '()))
  47. (if (>= i height)
  48. (reverse ret)
  49. (loop (+ i 1) (cons (diag-start-at (- width 1) i) ret)))))
  50. (append (row-diag in) (col-diag in)))
  51. (define (count-xmas str)
  52. (define len (string-length str))
  53. (let loop ((cur 0) (count 0))
  54. (define pos (string-search-positions "XMAS" str cur))
  55. (if pos
  56. (loop (cadar pos) (+ 1 count))
  57. count)))
  58. (define (count-mat mat)
  59. (apply + (map count-xmas mat)))
  60. (define mat-list
  61. (list input (flip input)
  62. (transpose input) (flip (transpose input))
  63. (diag input) (flip (diag input))
  64. (diag (flip input)) (flip (diag (flip input)))))
  65. (display (apply + (map count-mat mat-list)))
  66. (newline)