2.tcl 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172
  1. set fp [open "input"]
  2. set lines {}
  3. set line {}
  4. while {[gets $fp line] >= 0} {
  5. lappend lines $line
  6. }
  7. close $fp
  8. set height [llength $lines]
  9. set width [string length [lindex $lines 0]]
  10. proc char_at {x y} {
  11. global lines
  12. string index [lindex $lines $y] $x
  13. }
  14. proc out_of_range {x y} {
  15. global height width
  16. if {$x < 0 || $x >= $width} {
  17. return 1
  18. }
  19. if {$y < 0 || $y >= $height} {
  20. return 1
  21. }
  22. return 0
  23. }
  24. proc get_area_impl {pctx c x y} {
  25. upvar $pctx ctx
  26. if {[out_of_range $x $y]} {
  27. return
  28. }
  29. if {[dict exists [dict get $ctx cache] "$x,$y"]} {
  30. return
  31. }
  32. if {[char_at $x $y] != $c} {
  33. return
  34. }
  35. dict update ctx sum sum {incr sum}
  36. dict update ctx cache cache {
  37. dict set cache "$x,$y" {}
  38. }
  39. get_area_impl ctx $c [expr {$x + 1}] $y
  40. get_area_impl ctx $c [expr {$x - 1}] $y
  41. get_area_impl ctx $c $x [expr {$y + 1}]
  42. get_area_impl ctx $c $x [expr {$y - 1}]
  43. }
  44. proc get_area {x y} {
  45. set ctx {sum 0 cache {}}
  46. get_area_impl ctx [char_at $x $y] $x $y
  47. return [dict get $ctx sum]
  48. }
  49. proc get_peri_impl {pctx c x y} {
  50. proc is_outside {c x y} {
  51. if {[out_of_range $x $y]} {
  52. return 1
  53. }
  54. if {[char_at $x $y] != $c} {
  55. return 1
  56. }
  57. return 0
  58. }
  59. upvar $pctx ctx
  60. if {[out_of_range $x $y]} {
  61. return
  62. }
  63. if {[dict exists [dict get $ctx cache] "$x,$y"]} {
  64. return
  65. }
  66. if {[char_at $x $y] != $c} {
  67. return
  68. }
  69. set c [char_at $x $y]
  70. dict update ctx sides sides {
  71. if {[is_outside $c [expr {$x - 1}] $y]} {
  72. lappend sides [list 0 $x $y]
  73. }
  74. if {[is_outside $c [expr {$x + 1}] $y]} {
  75. lappend sides [list 1 [expr {$x + 1}] $y]
  76. }
  77. if {[is_outside $c $x [expr {$y + 1}]]} {
  78. lappend sides [list 2 [expr {$y + 1}] $x]
  79. }
  80. if {[is_outside $c $x [expr {$y - 1}]]} {
  81. lappend sides [list 3 $y $x]
  82. }
  83. }
  84. dict update ctx cache cache {
  85. dict set cache "$x,$y" {}
  86. }
  87. get_peri_impl ctx $c [expr {$x + 1}] $y
  88. get_peri_impl ctx $c [expr {$x - 1}] $y
  89. get_peri_impl ctx $c $x [expr {$y + 1}]
  90. get_peri_impl ctx $c $x [expr {$y - 1}]
  91. }
  92. proc side_cmp {a b} {
  93. set a_dir [lindex $a 0]
  94. set b_dir [lindex $b 0]
  95. if {[lindex $a 0] != [lindex $b 0]} {
  96. return [expr [lindex $a 0] - [lindex $b 0]]
  97. }
  98. if {[lindex $a 1] != [lindex $b 1]} {
  99. return [expr {[lindex $a 1] - [lindex $b 1]}]
  100. }
  101. return [expr {[lindex $a 2] - [lindex $b 2]}]
  102. }
  103. proc count_sides {lst} {
  104. proc is_cont {a b} {
  105. if {[lindex $a 0] != [lindex $b 0]} {
  106. return 0
  107. }
  108. if {[lindex $a 1] != [lindex $b 1]} {
  109. return 0
  110. }
  111. if {[lindex $b 2] - [lindex $a 2] != 1} {
  112. return 0
  113. }
  114. return 1
  115. }
  116. set ret 0
  117. for {set i 0} {$i < [expr {[llength $lst] - 1}]} {incr i} {
  118. if {[is_cont [lindex $lst $i] [lindex $lst [expr {$i + 1}]]]} {
  119. continue
  120. }
  121. incr ret
  122. }
  123. incr ret
  124. return $ret
  125. }
  126. proc get_peri {x y} {
  127. set ctx {sides {} cache {}}
  128. get_peri_impl ctx [char_at $x $y] $x $y
  129. return [count_sides [lsort -command side_cmp [dict get $ctx sides]]]
  130. }
  131. set visited {}
  132. proc mark_visited {c x y} {
  133. global visited
  134. if {[out_of_range $x $y]} return
  135. if {[char_at $x $y] != $c} return
  136. if {[dict exists $visited "$x,$y"]} return
  137. dict set visited "$x,$y" {}
  138. incr x
  139. mark_visited $c $x $y
  140. incr x -2
  141. mark_visited $c $x $y
  142. incr x
  143. incr y
  144. mark_visited $c $x $y
  145. incr y -2
  146. mark_visited $c $x $y
  147. }
  148. set sum 0
  149. for {set x 0} {$x < $width} {incr x} {
  150. for {set y 0} {$y < $height} {incr y} {
  151. if {[dict exists $visited "$x,$y"]} {
  152. continue
  153. }
  154. set area [get_area $x $y]
  155. set peri [get_peri $x $y]
  156. mark_visited [char_at $x $y] $x $y
  157. incr sum [expr {$peri * $area}]
  158. }
  159. }
  160. puts $sum