2.lua 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  1. function read_matrix(filename)
  2. local fp = io.open(filename, 'r')
  3. local lines = {}
  4. while true do
  5. local line = fp:read()
  6. if (not line) or #line == 0 then break end
  7. table.insert(lines, line)
  8. end
  9. return lines
  10. end
  11. local layout = read_matrix('input')
  12. local height = #layout
  13. local width = #layout[1]
  14. local count_actived = function(layout, x, y, direction)
  15. local trace_set = {}
  16. local active_set = {}
  17. local count = 0
  18. local trace
  19. trace = function (layout, x, y, direction)
  20. if x < 1 or x > width then return nil end
  21. if y < 1 or y > width then return nil end
  22. trace_key = x..','..y..','..direction
  23. if trace_set[trace_key] == nil then
  24. trace_set[trace_key] = 1
  25. else
  26. return nil
  27. end
  28. if active_set[x..','..y] == nil then
  29. active_set[x..','..y] = 1
  30. count = count + 1
  31. end
  32. -- trace next
  33. local cur = layout[y]:sub(x,x)
  34. if cur == '.' then
  35. if direction == 'E' then
  36. trace(layout, x+1, y, direction)
  37. elseif direction == 'W' then
  38. trace(layout, x-1, y, direction)
  39. elseif direction == 'N' then
  40. trace(layout, x, y-1, direction)
  41. elseif direction == 'S' then
  42. trace(layout, x, y+1, direction)
  43. end
  44. elseif cur == '-' then
  45. if direction == 'E' then
  46. trace(layout, x+1, y, direction)
  47. elseif direction == 'W' then
  48. trace(layout, x-1, y, direction)
  49. elseif direction == 'N' or direction == 'S' then
  50. trace(layout, x+1, y, 'E')
  51. trace(layout, x-1, y, 'W')
  52. end
  53. elseif cur == '|' then
  54. if direction == 'E' or direction == 'W' then
  55. trace(layout, x, y-1, 'N')
  56. trace(layout, x, y+1, 'S')
  57. elseif direction == 'N' then
  58. trace(layout, x, y-1, direction)
  59. elseif direction == 'S' then
  60. trace(layout, x, y+1, direction)
  61. end
  62. elseif cur == '/' then
  63. if direction == 'E' then
  64. trace(layout, x, y-1, 'N')
  65. elseif direction == 'W' then
  66. trace(layout, x, y+1, 'S')
  67. elseif direction == 'N' then
  68. trace(layout, x+1, y, 'E')
  69. elseif direction == 'S' then
  70. trace(layout, x-1, y, 'W')
  71. end
  72. elseif cur == '\\' then
  73. if direction == 'E' then
  74. trace(layout, x, y+1, 'S')
  75. elseif direction == 'W' then
  76. trace(layout, x, y-1, 'N')
  77. elseif direction == 'N' then
  78. trace(layout, x-1, y, 'W')
  79. elseif direction == 'S' then
  80. trace(layout, x+1, y, 'E')
  81. end
  82. end
  83. end
  84. trace(layout, x, y, direction)
  85. return count
  86. end
  87. local max = -1
  88. for i = 1,height do
  89. local count1 = count_actived(layout, 1, i, 'E')
  90. if count1 > max then max = count1 end
  91. local count2 = count_actived(layout, width, i, 'W')
  92. if count2 > max then max = count2 end
  93. end
  94. for i = 1,width do
  95. local count1 = count_actived(layout, i, 1, 'S')
  96. if count1 > max then max = count1 end
  97. local count2 = count_actived(layout, i, height, 'N')
  98. if count2 > max then max = count2 end
  99. end
  100. print(max)