-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathday08.rb
135 lines (124 loc) · 4.64 KB
/
day08.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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
# --- Day 8: Memory Maneuver ---
#
# The sleigh is much easier to pull than you'd expect for something its weight. Unfortunately,
# neither you nor the Elves know which way the North Pole is from here.
#
# You check your wrist device for anything that might help. It seems to have some kind of
# navigation system! Activating the navigation system produces more bad news: "Failed to start
# navigation system. Could not read software license file."
#
# The navigation system's license file consists of a list of numbers (your puzzle input). The
# numbers define a data structure which, when processed, produces some kind of tree that can be
# used to calculate the license number.
#
# The tree is made up of nodes; a single, outermost node forms the tree's root, and it contains
# all other nodes in the tree (or contains nodes that contain nodes, and so on).
#
# Specifically, a node consists of:
#
#
# A header, which is always exactly two numbers:
#
# The quantity of child nodes.
# The quantity of metadata entries.
#
# Zero or more child nodes (as specified in the header).
# One or more metadata entries (as specified in the header).
#
# Each child node is itself a node that has its own header, child nodes, and metadata. For
# example:
#
# 2 3 0 3 10 11 12 1 1 0 1 99 2 1 1 2
# A----------------------------------
# B----------- C-----------
# D-----
#
# In this example, each node of the tree is also marked with an underline starting with a letter
# for easier identification. In it, there are four nodes:
#
#
# A, which has 2 child nodes (B, C) and 3 metadata entries (1, 1, 2).
# B, which has 0 child nodes and 3 metadata entries (10, 11, 12).
# C, which has 1 child node (D) and 1 metadata entry (2).
# D, which has 0 child nodes and 1 metadata entry (99).
#
# The first check done on the license file is to simply add up all of the metadata entries. In
# this example, that sum is 1+1+2+10+11+12+2+99=138.
#
# What is the sum of all metadata entries?
#
require_relative 'input'
day = __FILE__[/\d+/].to_i(10)
input = Input.for_day(day, 2018)
# input = "2 3 0 3 10 11 12 1 1 0 1 99 2 1 1 2"
input = input.chomp.split(' ').map(&:to_i)
puts "solving day #{day} from input (#{input.size} values)"
# p input
class Node
def initialize(stream, level=0)
fail "ran out?" unless stream.size >= 3
@children = []
@child_count = stream.shift
@metadata_count = stream.shift
print "#{' '*level}#{@child_count} child#{'ren' unless @child_count == 1}, #{@metadata_count} metadata"
@metadata = []
unless @child_count.zero?
puts
@child_count.times do
@children << self.class.new(stream, level+1)
end
end
@metadata_count.times do
@metadata << stream.shift
end
end
def metadata_sum
@children.reduce(@metadata.sum) {|sum,child| sum + child.metadata_sum }
end
def value
if @child_count.zero?
@metadata.sum
else
@metadata.reduce(0) do |sum,pos|
if pos.zero?
sum
else
sum + @children[pos - 1]&.value.to_i
end
end
end
end
end
root = Node.new input
puts "Part 1:", root.metadata_sum
# Your puzzle answer was 43825.
#
# The first half of this puzzle is complete! It provides one gold star: *
# --- Part Two ---
#
# The second check is slightly more complicated: you need to find the value of the root node (A in
# the example above).
#
# The value of a node depends on whether it has child nodes.
#
# If a node has no child nodes, its value is the sum of its metadata entries. So, the value of
# node B is 10+11+12=33, and the value of node D is 99.
#
# However, if a node does have child nodes, the metadata entries become indexes which refer to
# those child nodes. A metadata entry of 1 refers to the first child node, 2 to the second, 3 to
# the third, and so on. The value of this node is the sum of the values of the child nodes
# referenced by the metadata entries. If a referenced child node does not exist, that reference is
# skipped. A child node can be referenced multiple time and counts each time it is referenced. A
# metadata entry of 0 does not refer to any child node.
#
# For example, again using the above nodes:
#
# Node C has one metadata entry, 2. Because node C has only one child node, 2 references a child
# node which does not exist, and so the value of node C is 0.
#
# Node A has three metadata entries: 1, 1, and 2. The 1 references node A's first child node, B,
# and the 2 references node A's second child node, C. Because node B has a value of 33 and node C
# has a value of 0, the value of node A is 33+33+0=66.
# So, in this example, the value of the root node is 66.
# What is the value of the root node?
puts "Part 2:", root.value