1.rkt 1.0 KB

123456789101112131415161718192021222324252627282930313233
  1. #lang racket
  2. (require "../lib/utils.rkt")
  3. (define lines
  4. (call-with-input-file "input"
  5. (λ (fp)
  6. (get-lines fp))))
  7. (define (parse-line line)
  8. (define line-splited (string-split line))
  9. (define arr-list (string->list (car line-splited)))
  10. (define conds (map string->number (string-split (cadr line-splited) ",")))
  11. (cons arr-list conds))
  12. (define (arr-match? lst conds)
  13. (define str (list->string (reverse lst)))
  14. (equal? conds (filter (λ (n) (not (= 0 n))) (map string-length (string-split str ".")))))
  15. (define (possible-arr-num instance)
  16. (define conds (cdr instance))
  17. (define (impl scanned unscanned)
  18. (if (null? unscanned)
  19. (if (arr-match? scanned conds) 1 0)
  20. (let ()
  21. (define head (car unscanned))
  22. (if (not (char=? head #\?))
  23. (impl (cons head scanned) (cdr unscanned))
  24. (+ (impl (cons #\. scanned) (cdr unscanned))
  25. (impl (cons #\# scanned) (cdr unscanned)))))))
  26. (impl '() (car instance)))
  27. (apply + (map possible-arr-num (map parse-line lines)))