2.tcl 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. set fp [open "input" r]
  2. set line {}
  3. while {[gets $fp line] >= 0} {
  4. lappend lines $line
  5. }
  6. close $fp
  7. set height [llength $lines]
  8. set width [string length [lindex $lines 0]]
  9. proc out_of_range {x y} {
  10. global height width
  11. if {$x < 0 || $x >= $width} {
  12. return 1
  13. }
  14. if {$y < 0 || $y >= $height} {
  15. return 1
  16. }
  17. return 0
  18. }
  19. proc char_at {x y} {
  20. global lines
  21. if {[out_of_range $x $y]} {
  22. return -1
  23. }
  24. return [string index [lindex $lines $y] $x]
  25. }
  26. proc find_path {x y expect} {
  27. global path_cache
  28. if {[out_of_range $x $y]} {
  29. return 0
  30. }
  31. if {$expect != [char_at $x $y]} {
  32. return 0
  33. }
  34. if {$expect == 9} {
  35. return 1
  36. }
  37. set next [expr {$expect + 1}]
  38. set ret [expr {
  39. [find_path [expr {$x + 1}] $y $next]
  40. + [find_path [expr {$x - 1}] $y $next]
  41. + [find_path $x [expr {$y + 1}] $next]
  42. + [find_path $x [expr {$y - 1}] $next]
  43. }]
  44. }
  45. set sum 0
  46. for {set x 0} {$x < $width} {incr x} {
  47. for {set y 0} {$y < $height} {incr y} {
  48. incr sum [find_path $x $y 0]
  49. }
  50. }
  51. puts $sum