1.rkt 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. #lang racket
  2. (require "../lib/utils.rkt")
  3. (require "../lib/obj.rkt")
  4. (define (read-input)
  5. (call-with-input-file "input"
  6. (λ (fp)
  7. (list->vector (get-lines fp)))))
  8. (define schema (read-input))
  9. (define (char-at line col)
  10. (string-ref (vector-ref schema line) col))
  11. (define height (vector-length schema))
  12. (define width (string-length (vector-ref schema 0)))
  13. (define make-num (obj-maker 'line 'col 'value 'length))
  14. (define (scan-nums)
  15. (define nums '())
  16. (let loop ((i 0))
  17. (if (>= i height)
  18. (void)
  19. (let ()
  20. (let loop ((j 0))
  21. (define curline (vector-ref schema i))
  22. (if (>= j width)
  23. (void)
  24. (let ()
  25. (define next 1)
  26. (define (find-next)
  27. (if (or (>= (+ j next) 140)
  28. (not (char-numeric? (char-at i (+ j next)))))
  29. (void)
  30. (let ()
  31. (set! next (+ 1 next))
  32. (find-next))))
  33. (if (char-numeric? (char-at i j))
  34. (let ()
  35. (find-next)
  36. (define value (string->number (substring curline j (+ j next))))
  37. (set! nums (cons (make-num i j value next) nums)))
  38. (void))
  39. (loop (+ j next)))))
  40. (loop (+ 1 i)))))
  41. (reverse nums))
  42. (define nums (scan-nums))
  43. (define (is-symbol? c)
  44. (and (not (char-numeric? c))
  45. (not (char=? #\. c))))
  46. (define (collect-adjacent num)
  47. (define left
  48. (if (= 0 (num 'col))
  49. '()
  50. (list (char-at (num 'line) (- (num 'col) 1)))))
  51. (define right
  52. (if (= width (+ (num 'col) (num 'length)))
  53. '()
  54. (list (char-at (num 'line) (+ (num 'col) (num 'length))))))
  55. (define up
  56. (if (= 0 (num 'line))
  57. '()
  58. (string->list
  59. (substring (vector-ref schema (- (num 'line) 1))
  60. (max 0 (- (num 'col) 1))
  61. (min width (+ (num 'col) (num 'length) 1))))))
  62. (define down
  63. (if (= (- height 1) (num 'line))
  64. '()
  65. (string->list
  66. (substring (vector-ref schema (+ (num 'line) 1))
  67. (max 0 (- (num 'col) 1))
  68. (min width (+ (num 'col) (num 'length) 1))))))
  69. (append left right up down))
  70. (define (is-part-num? num)
  71. (findf is-symbol? (collect-adjacent num)))
  72. (apply + (map (λ (x) (x 'value))
  73. (filter is-part-num? nums)))