2.scm 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. (import (chicken io))
  2. (import regex)
  3. (import matchable)
  4. (import (chicken string))
  5. (define in-str
  6. (with-input-from-file "input" read-string))
  7. ;; (display in-str)
  8. (define re
  9. "mul\\([0-9]+,[0-9]+\\)|do\\(\\)|don't\\(\\)")
  10. (define matched
  11. (let loop ((start 0) (result '()))
  12. (define search-ret (string-search re in-str start))
  13. (if (not search-ret)
  14. (reverse result)
  15. (loop (cadar (string-search-positions re in-str start))
  16. (cons (car search-ret) result)))))
  17. (define (extract-numbers str)
  18. (define nums-str (substring str 4 (- (string-length str) 1)))
  19. (map string->number (string-split nums-str ",")))
  20. (define (process-instr str)
  21. (cond ((string-search "mul" str) (extract-numbers str))
  22. ((string-search "do\\(" str) 'do)
  23. (else 'dont)))
  24. (define (calculate str)
  25. (define vals (extract-numbers str))
  26. (* (car vals) (cadr vals)))
  27. (define sum
  28. (let loop ((is-do #t)
  29. (lst (map process-instr matched))
  30. (ret 0))
  31. (match lst
  32. (() ret)
  33. (('do . r) (loop #t r ret))
  34. (('dont . r) (loop #f r ret))
  35. (((a b) . r) (if is-do
  36. (loop is-do r (+ ret (* a b)))
  37. (loop is-do r ret))))))
  38. (display sum)