-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path10_hoof_it.rb
43 lines (39 loc) · 1.48 KB
/
10_hoof_it.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
width = nil
*valids, summits = ARGF.each_with_index.with_object(Array.new(10) { Hash.new {} }.freeze) { |(line, y), vs|
line.chomp!
pad = 1
width ||= line.size + pad
raise "bad width #{line.size + pad} != #{width}" if line.size + pad != width
line.each_char.with_index { |c, x|
next if c == ?.
vs[Integer(c)][y * width + x] = true
}
}.map(&:freeze)
valids.reverse!.freeze
DPOSES = [-width, -1, 1, width].freeze
# Not much difference between running forward/backward,
# nor between running all simultaneously vs one at a time.
#
# Two possibilities allow better diagnostics
# (score/rating associated with each trailhead):
# - backward from all summits at once
# - forward from each individual trailhead
#
# the former has *slightly* better runtime, so will go with that one.
#
# for the all at once, there's also the choice to push or pull.
# (earlier iterations push their data to later iterations,
# or later iterations pull their data from earlier ones)
# pull seems to be slightly faster, so go with that one as well.
def trails(valids, trailheads)
valids.reduce(trailheads) { |poses, valid|
valid.each_key.with_object({}) { |pos, h|
DPOSES.each { |dpos|
npos = pos + dpos
h[pos] = yield(h[pos] || 0, poses[npos]) if poses.has_key?(npos)
}
}.freeze
}.values.freeze
end
puts trails(valids, summits.each_key.with_index.to_h { |k, i| [k, 1 << i] }, &:|).sum { |v| v.to_s(2).count(?1) }
puts trails(valids, summits.transform_values { 1 }, &:+).sum