1.scm 1002 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. (import (chicken string))
  2. (import (chicken io))
  3. (import (chicken sort))
  4. (import matchable)
  5. (import srfi-1)
  6. (define input
  7. (with-input-from-file "input"
  8. (lambda ()
  9. (let loop ((ret '()))
  10. (let ((line (read-line)))
  11. (if (eof-object? line)
  12. (reverse ret)
  13. (loop (cons line ret))))))))
  14. (set! input (map string-split input))
  15. (set! input (map (lambda (lst) (map string->number lst)) input))
  16. (define (diff in)
  17. (let loop ((lst in) (ret '()))
  18. (match lst
  19. ((a b . r) (loop (cdr lst) (cons (- a b) ret)))
  20. ((a) (reverse ret)))))
  21. (define ladder (map diff input))
  22. (define (same-sign in)
  23. (define prod (map (lambda (x) (* x (car in))) in))
  24. (foldl (lambda (a b) (and a b)) #t (map (lambda (x) (> x 0)) prod)))
  25. (define (safe in)
  26. (not (any (lambda (x) (> (abs x) 3)) in)))
  27. (define result
  28. (map (lambda (a b) (and a b))
  29. (map same-sign ladder)
  30. (map safe ladder)))
  31. (display (length (filter (lambda (x) x) result)))
  32. (newline)