parent
4c0b47a24e
commit
14063c8ad4
@ -1,40 +1,89 @@
|
|||||||
input = ARGF.read.to_i
|
require "minitest"
|
||||||
|
|
||||||
dir = [1,0]
|
class Spiral
|
||||||
|
def initialize
|
||||||
def next_dir(dir)
|
@square = [0,0]
|
||||||
case dir
|
@dir = [1,0]
|
||||||
when [1,0]
|
@steps = [1, 1]
|
||||||
[0,1]
|
end
|
||||||
when [0,1]
|
|
||||||
[-1,0]
|
def each
|
||||||
when [-1,0]
|
return enum_for(__method__) unless block_given?
|
||||||
[0,-1]
|
|
||||||
when [0,-1]
|
loop do
|
||||||
[1,0]
|
yield @square
|
||||||
else
|
step!
|
||||||
raise "invalid dir: #{dir}"
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
private
|
||||||
|
|
||||||
|
def step!
|
||||||
|
@steps[0] -= 1
|
||||||
|
@square = @square.zip(@dir).map {|i,j| i+j }
|
||||||
|
if @steps[0] == 0
|
||||||
|
change_dir!
|
||||||
|
@steps << next_steps
|
||||||
|
@steps.shift
|
||||||
|
end
|
||||||
end
|
end
|
||||||
end
|
|
||||||
|
|
||||||
grid = Hash.new(0)
|
def change_dir!
|
||||||
grid[[0,0]] = 1
|
@dir = case @dir
|
||||||
|
when [1,0]
|
||||||
|
[0,1]
|
||||||
|
when [0,1]
|
||||||
|
[-1,0]
|
||||||
|
when [-1,0]
|
||||||
|
[0,-1]
|
||||||
|
when [0,-1]
|
||||||
|
[1,0]
|
||||||
|
else
|
||||||
|
raise "invalid dir: #@dir"
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
def next_value(grid, x, y)
|
def next_steps
|
||||||
[[-1, 1],[0, 1],[1,1],
|
case @dir
|
||||||
[-1, 0], [1,0],
|
when [1,0]
|
||||||
[-1,-1],[0,-1],[1,-1]].map {|i,j| grid[[x+i,y+j]]}.sum
|
@steps[1]
|
||||||
|
when [0,1]
|
||||||
|
@steps[1] + 1
|
||||||
|
when [-1,0]
|
||||||
|
@steps[1]
|
||||||
|
when [0,-1]
|
||||||
|
@steps[1] + 1
|
||||||
|
else
|
||||||
|
raise "invalid dir: #@dir"
|
||||||
|
end
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
current = [0,0]
|
if $0 == __FILE__
|
||||||
loop do
|
if ARGV.shift == "test"
|
||||||
next_square = current.zip(dir).map {|a,b| a + b }
|
require "minitest/test"
|
||||||
value = next_value(grid, *next_square)
|
else
|
||||||
puts "#{current}: #{value}"
|
input = ARGF.read.to_i
|
||||||
exit if value > input
|
p Spiral.new.each.with_index.find {|_,i| i == input - 1 }.first.sum
|
||||||
grid[next_square] = value
|
end
|
||||||
current = next_square
|
|
||||||
dir = next_dir(dir) if grid[current.zip(next_dir(dir)).map {|a,b| a + b }] == 0
|
|
||||||
end
|
end
|
||||||
|
|
||||||
p next_value(grid, 1,0)
|
class TestSpiral < Minitest::Test
|
||||||
|
def test_spiral
|
||||||
|
spiral = Spiral.new
|
||||||
|
e = spiral.each
|
||||||
|
assert_equal [0,0], e.next
|
||||||
|
assert_equal [1,0], e.next
|
||||||
|
assert_equal [1,1], e.next
|
||||||
|
assert_equal [0,1], e.next
|
||||||
|
assert_equal [-1,1], e.next
|
||||||
|
assert_equal [-1,0], e.next
|
||||||
|
assert_equal [-1,-1], e.next
|
||||||
|
assert_equal [0,-1], e.next
|
||||||
|
assert_equal [1,-1], e.next
|
||||||
|
assert_equal [2,-1], e.next
|
||||||
|
|
||||||
|
spiral = Spiral.new
|
||||||
|
assert_equal [0,-2], spiral.each.with_index.find {|_,i| i == 22 }.first
|
||||||
|
end
|
||||||
|
end
|
||||||
|
Loading…
Reference in new issue