-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path05.py
216 lines (156 loc) · 9.2 KB
/
05.py
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
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
"""
--- Day 5: If You Give A Seed A Fertilizer ---
You take the boat and find the gardener right where you were told he would be: managing a giant "garden" that looks more to you like a farm.
"A water source? Island Island is the water source!" You point out that Snow Island isn't receiving any water.
"Oh, we had to stop the water because we ran out of sand to filter it with! Can't make snow with dirty water. Don't worry, I'm sure we'll get more sand soon; we only turned off the water a few days... weeks... oh no." His face sinks into a look of horrified realization.
"I've been so busy making sure everyone here has food that I completely forgot to check why we stopped getting more sand! There's a ferry leaving soon that is headed over in that direction - it's much faster than your boat. Could you please go check it out?"
You barely have time to agree to this request when he brings up another. "While you wait for the ferry, maybe you can help us with our food production problem. The latest Island Island Almanac just arrived and we're having trouble making sense of it."
The almanac (your puzzle input) lists all of the seeds that need to be planted. It also lists what type of soil to use with each kind of seed, what type of fertilizer to use with each kind of soil, what type of water to use with each kind of fertilizer, and so on. Every type of seed, soil, fertilizer and so on is identified with a number, but numbers are reused by each category - that is, soil 123 and fertilizer 123 aren't necessarily related to each other.
For example:
seeds: 79 14 55 13
seed-to-soil map:
50 98 2
52 50 48
soil-to-fertilizer map:
0 15 37
37 52 2
39 0 15
fertilizer-to-water map:
49 53 8
0 11 42
42 0 7
57 7 4
water-to-light map:
88 18 7
18 25 70
light-to-temperature map:
45 77 23
81 45 19
68 64 13
temperature-to-humidity map:
0 69 1
1 0 69
humidity-to-location map:
60 56 37
56 93 4
The almanac starts by listing which seeds need to be planted: seeds 79, 14, 55, and 13.
The rest of the almanac contains a list of maps which describe how to convert numbers from a source category into numbers in a destination category. That is, the section that starts with seed-to-soil map: describes how to convert a seed number (the source) to a soil number (the destination). This lets the gardener and his team know which soil to use with which seeds, which water to use with which fertilizer, and so on.
Rather than list every source number and its corresponding destination number one by one, the maps describe entire ranges of numbers that can be converted. Each line within a map contains three numbers: the destination range start, the source range start, and the range length.
Consider again the example seed-to-soil map:
50 98 2
52 50 48
The first line has a destination range start of 50, a source range start of 98, and a range length of 2. This line means that the source range starts at 98 and contains two values: 98 and 99. The destination range is the same length, but it starts at 50, so its two values are 50 and 51. With this information, you know that seed number 98 corresponds to soil number 50 and that seed number 99 corresponds to soil number 51.
The second line means that the source range starts at 50 and contains 48 values: 50, 51, ..., 96, 97. This corresponds to a destination range starting at 52 and also containing 48 values: 52, 53, ..., 98, 99. So, seed number 53 corresponds to soil number 55.
Any source numbers that aren't mapped correspond to the same destination number. So, seed number 10 corresponds to soil number 10.
So, the entire list of seed numbers and their corresponding soil numbers looks like this:
seed soil
0 0
1 1
... ...
48 48
49 49
50 52
51 53
... ...
96 98
97 99
98 50
99 51
With this map, you can look up the soil number required for each initial seed number:
Seed number 79 corresponds to soil number 81.
Seed number 14 corresponds to soil number 14.
Seed number 55 corresponds to soil number 57.
Seed number 13 corresponds to soil number 13.
The gardener and his team want to get started as soon as possible, so they'd like to know the closest location that needs a seed. Using these maps, find the lowest location number that corresponds to any of the initial seeds. To do this, you'll need to convert each seed number through other categories until you can find its corresponding location number. In this example, the corresponding types are:
Seed 79, soil 81, fertilizer 81, water 81, light 74, temperature 78, humidity 78, location 82.
Seed 14, soil 14, fertilizer 53, water 49, light 42, temperature 42, humidity 43, location 43.
Seed 55, soil 57, fertilizer 57, water 53, light 46, temperature 82, humidity 82, location 86.
Seed 13, soil 13, fertilizer 52, water 41, light 34, temperature 34, humidity 35, location 35.
So, the lowest location number in this example is 35.
What is the lowest location number that corresponds to any of the initial seed numbers?
--- Part Two ---
Everyone will starve if you only plant such a small number of seeds. Re-reading the almanac, it looks like the seeds: line actually describes ranges of seed numbers.
The values on the initial seeds: line come in pairs. Within each pair, the first value is the start of the range and the second value is the length of the range. So, in the first line of the example above:
seeds: 79 14 55 13
This line describes two ranges of seed numbers to be planted in the garden. The first range starts with seed number 79 and contains 14 values: 79, 80, ..., 91, 92. The second range starts with seed number 55 and contains 13 values: 55, 56, ..., 66, 67.
Now, rather than considering four seed numbers, you need to consider a total of 27 seed numbers.
In the above example, the lowest location number can be obtained from seed number 82, which corresponds to soil 84, fertilizer 84, water 84, light 77, temperature 45, humidity 46, and location 46. So, the lowest location number is 46.
Consider all of the initial seed numbers listed in the ranges on the first line of the almanac. What is the lowest location number that corresponds to any of the initial seed numbers?
"""
from dataclasses import dataclass
from functools import reduce
@dataclass
class Mapping:
dst_start: int
src_start: int
length: int
class Map:
def __init__(self, src_type, dst_type, mappings):
self.src_type = src_type
self.dst_type = dst_type
self.mappings = mappings
@classmethod
def from_section(cls, section: str):
lines = section.split("\n")
src_type, _, dst_type = lines[0].split()[0].split("-")
mappings = []
for line in lines[1:]:
dst_start, src_start, length = [int(x) for x in line.split()]
mappings.append(Mapping(dst_start, src_start, length))
return cls(src_type, dst_type, mappings)
class Almanac:
def __init__(self, seeds_and_ranges: list[int, int], maps: list[Map]):
self.seeds_and_ranges = seeds_and_ranges # in the form [(seed, range), ...]
self.maps = maps
@classmethod
def from_file(cls, fp: str, puzzle_part: 1 | 2):
with open(fp, "r") as f:
sections = f.read().split("\n\n")
maps = []
for section in sections:
if section.startswith("seeds:"):
seeds = [int(x) for x in section.split(": ")[1].split(" ")]
if puzzle_part == 1:
seeds_and_ranges = zip(seeds, [1] * len(seeds))
elif puzzle_part == 2:
seeds_and_ranges = zip(seeds[::2], seeds[1::2])
else: # it's a map
maps.append(Map.from_section(section))
return cls(seeds_and_ranges, maps)
def _apply_mappings(
self, seeds_and_ranges: list[tuple[int, int]], map_: Map
) -> list[int]:
for seed_start, seed_range in seeds_and_ranges:
while seed_range > 0:
for mapping in map_.mappings:
# how far ahead the seed start is vs. this mapping's start
delta = seed_start - mapping.src_start
if delta in range(mapping.length):
match_length = min(mapping.length - delta, seed_range)
# we're in range. translate and yield
yield (mapping.dst_start + delta, match_length)
seed_start += match_length
seed_range -= match_length
break
else:
# not in range, so no translation
yield (seed_start, seed_range)
break
def nearest_location(self) -> int:
translated_ranges = reduce(
self._apply_mappings, self.maps, self.seeds_and_ranges
)
return min([location_start for location_start, _ in translated_ranges])
def part_1(fp: str) -> int:
almanac = Almanac.from_file(fp, puzzle_part=1)
return almanac.nearest_location()
def part_2(fp: str) -> int:
almanac = Almanac.from_file(fp, puzzle_part=2)
return almanac.nearest_location()
if __name__ == "__main__":
# part 1
assert part_1("05-01-small.txt") == 35
print(part_1("05-01-large.txt"))
# part 2
assert part_2("05-01-small.txt") == 46
print(part_2("05-01-large.txt"))