1.lua 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  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 trace_set = {}
  15. local active_set = {}
  16. local count = 0
  17. function trace(layout, x, y, direction)
  18. if x < 1 or x > width then return nil end
  19. if y < 1 or y > width then return nil end
  20. trace_key = x..','..y..','..direction
  21. if trace_set[trace_key] == nil then
  22. trace_set[trace_key] = 1
  23. else
  24. return nil
  25. end
  26. if active_set[x..','..y] == nil then
  27. active_set[x..','..y] = 1
  28. count = count + 1
  29. end
  30. -- trace next
  31. local cur = layout[y]:sub(x,x)
  32. if cur == '.' then
  33. if direction == 'E' then
  34. trace(layout, x+1, y, direction)
  35. elseif direction == 'W' then
  36. trace(layout, x-1, y, direction)
  37. elseif direction == 'N' then
  38. trace(layout, x, y-1, direction)
  39. elseif direction == 'S' then
  40. trace(layout, x, y+1, direction)
  41. end
  42. elseif cur == '-' then
  43. if direction == 'E' then
  44. trace(layout, x+1, y, direction)
  45. elseif direction == 'W' then
  46. trace(layout, x-1, y, direction)
  47. elseif direction == 'N' or direction == 'S' then
  48. trace(layout, x+1, y, 'E')
  49. trace(layout, x-1, y, 'W')
  50. end
  51. elseif cur == '|' then
  52. if direction == 'E' or direction == 'W' then
  53. trace(layout, x, y-1, 'N')
  54. trace(layout, x, y+1, 'S')
  55. elseif direction == 'N' then
  56. trace(layout, x, y-1, direction)
  57. elseif direction == 'S' then
  58. trace(layout, x, y+1, direction)
  59. end
  60. elseif cur == '/' then
  61. if direction == 'E' then
  62. trace(layout, x, y-1, 'N')
  63. elseif direction == 'W' then
  64. trace(layout, x, y+1, 'S')
  65. elseif direction == 'N' then
  66. trace(layout, x+1, y, 'E')
  67. elseif direction == 'S' then
  68. trace(layout, x-1, y, 'W')
  69. end
  70. elseif cur == '\\' then
  71. if direction == 'E' then
  72. trace(layout, x, y+1, 'S')
  73. elseif direction == 'W' then
  74. trace(layout, x, y-1, 'N')
  75. elseif direction == 'N' then
  76. trace(layout, x-1, y, 'W')
  77. elseif direction == 'S' then
  78. trace(layout, x+1, y, 'E')
  79. end
  80. end
  81. end
  82. trace(layout, 1, 1, 'E')
  83. print(count)