2.tcl 892 B

12345678910111213141516171819202122232425262728293031
  1. set fp [open "input"]
  2. set equations {}
  3. while {[gets $fp line] >= 0} {
  4. set s1 [split $line ":"]
  5. lappend equations $s1
  6. }
  7. proc can_match_impl {target numbers current} {
  8. if {0 == [llength $numbers]} {
  9. return [expr {$target == $current}]
  10. }
  11. set rest [lrange $numbers 1 end]
  12. set first [lindex $numbers 0]
  13. return [expr {[can_match_impl $target $rest [expr {$current * $first}]]
  14. || [can_match_impl $target $rest [expr {$current + $first}]]
  15. || [can_match_impl $target $rest "$current$first"]}]
  16. }
  17. proc can_match {target numbers} {
  18. return [can_match_impl $target [lrange $numbers 1 end] [lindex $numbers 0]]
  19. }
  20. set sum 0
  21. foreach elem $equations {
  22. set test_value [lindex $elem 0]
  23. set numbers [lindex $elem 1]
  24. if {[can_match $test_value $numbers]} {
  25. set sum [expr {$sum + $test_value}]
  26. }
  27. }
  28. puts $sum