Working on day 08.
This commit is contained in:
parent
19915835d4
commit
02113adb0e
4 changed files with 1123 additions and 0 deletions
54
08/README.md
Normal file
54
08/README.md
Normal file
|
|
@ -0,0 +1,54 @@
|
|||
# --- Day 8: Playground ---
|
||||
|
||||
Equipped with a new understanding of teleporter maintenance, you confidently step onto the repaired teleporter pad.
|
||||
|
||||
You rematerialize on an unfamiliar teleporter pad and find yourself in a vast underground space which contains a giant playground!
|
||||
|
||||
Across the playground, a group of Elves are working on setting up an ambitious Christmas decoration project. Through careful rigging, they have suspended a large number of small electrical junction boxes.
|
||||
|
||||
Their plan is to connect the junction boxes with long strings of lights. Most of the junction boxes don't provide electricity; however, when two junction boxes are connected by a string of lights, electricity can pass between those two junction boxes.
|
||||
|
||||
The Elves are trying to figure out which junction boxes to connect so that electricity can reach every junction box. They even have a list of all of the junction boxes' positions in 3D space (your puzzle input).
|
||||
|
||||
For example:
|
||||
|
||||
```txt
|
||||
162,817,812
|
||||
57,618,57
|
||||
906,360,560
|
||||
592,479,940
|
||||
352,342,300
|
||||
466,668,158
|
||||
542,29,236
|
||||
431,825,988
|
||||
739,650,466
|
||||
52,470,668
|
||||
216,146,977
|
||||
819,987,18
|
||||
117,168,530
|
||||
805,96,715
|
||||
346,949,466
|
||||
970,615,88
|
||||
941,993,340
|
||||
862,61,35
|
||||
984,92,344
|
||||
425,690,689
|
||||
```
|
||||
|
||||
This list describes the position of 20 junction boxes, one per line. Each position is given as X,Y,Z coordinates. So, the first junction box in the list is at X=162, Y=817, Z=812.
|
||||
|
||||
To save on string lights, the Elves would like to focus on connecting pairs of junction boxes that are as close together as possible according to straight-line distance. In this example, the two junction boxes which are closest together are 162,817,812 and 425,690,689.
|
||||
|
||||
By connecting these two junction boxes together, because electricity can flow between them, they become part of the same circuit. After connecting them, there is a single circuit which contains two junction boxes, and the remaining 18 junction boxes remain in their own individual circuits.
|
||||
|
||||
Now, the two junction boxes which are closest together but aren't already directly connected are 162,817,812 and 431,825,988. After connecting them, since 162,817,812 is already connected to another junction box, there is now a single circuit which contains three junction boxes and an additional 17 circuits which contain one junction box each.
|
||||
|
||||
The next two junction boxes to connect are 906,360,560 and 805,96,715. After connecting them, there is a circuit containing 3 junction boxes, a circuit containing 2 junction boxes, and 15 circuits which contain one junction box each.
|
||||
|
||||
The next two junction boxes are 431,825,988 and 425,690,689. Because these two junction boxes were already in the same circuit, nothing happens!
|
||||
|
||||
This process continues for a while, and the Elves are concerned that they don't have enough extension cables for all these circuits. They would like to know how big the circuits will be.
|
||||
|
||||
After making the ten shortest connections, there are 11 circuits: one circuit which contains 5 junction boxes, one circuit which contains 4 junction boxes, two circuits which contain 2 junction boxes each, and seven circuits which each contain a single junction box. Multiplying together the sizes of the three largest circuits (5, 4, and one of the circuits of size 2) produces 40.
|
||||
|
||||
Your list contains many junction boxes; connect together the 1000 pairs of junction boxes which are closest together. Afterward, what do you get if you multiply together the sizes of the three largest circuits?
|
||||
1000
08/input/junction_boxes.txt
Normal file
1000
08/input/junction_boxes.txt
Normal file
File diff suppressed because it is too large
Load diff
20
08/input/test_junction_boxes.txt
Normal file
20
08/input/test_junction_boxes.txt
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
162,817,812
|
||||
57,618,57
|
||||
906,360,560
|
||||
592,479,940
|
||||
352,342,300
|
||||
466,668,158
|
||||
542,29,236
|
||||
431,825,988
|
||||
739,650,466
|
||||
52,470,668
|
||||
216,146,977
|
||||
819,987,18
|
||||
117,168,530
|
||||
805,96,715
|
||||
346,949,466
|
||||
970,615,88
|
||||
941,993,340
|
||||
862,61,35
|
||||
984,92,344
|
||||
425,690,689
|
||||
49
08/main.py
Executable file
49
08/main.py
Executable file
|
|
@ -0,0 +1,49 @@
|
|||
#!/bin/python
|
||||
|
||||
from logging import debug, DEBUG, basicConfig
|
||||
from sys import argv
|
||||
from math import sqrt
|
||||
|
||||
|
||||
def parse_input(input_filepath: str) -> list[tuple[int, ...]]:
|
||||
|
||||
with open(file=input_filepath, mode="r") as input_file:
|
||||
input_data: list[str] = input_file.readlines()
|
||||
|
||||
debug(f"RAW INPUT: {input_data}")
|
||||
|
||||
return [tuple(int(y) for y in x.split(",")) for x in input_data]
|
||||
|
||||
|
||||
def get_distances(positions: list[tuple[int, ...]]) -> list[tuple[float, int, int]]:
|
||||
distances: list[tuple[float, int, int]] = []
|
||||
for a in range(len(positions)):
|
||||
for b in range(a + 1, len(positions)):
|
||||
distances.append(
|
||||
(
|
||||
sqrt(
|
||||
pow(positions[a][0] - positions[b][0], 2)
|
||||
+ pow(positions[a][1] - positions[b][1], 2)
|
||||
+ pow(positions[a][2] - positions[b][2], 2)
|
||||
),
|
||||
a,
|
||||
b,
|
||||
)
|
||||
)
|
||||
distances.sort(key=lambda x: x[0])
|
||||
return distances
|
||||
|
||||
|
||||
def main() -> None:
|
||||
input_filepath = "input/test_junction_boxes.txt"
|
||||
junction_boxes = parse_input(input_filepath)
|
||||
distances = get_distances(junction_boxes)
|
||||
debug(f"DISTANCES BETWEEN BOXES: {distances}")
|
||||
return
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
if "-d" in argv or "--debug" in argv:
|
||||
basicConfig(filename="debug.log", level=DEBUG)
|
||||
main()
|
||||
exit(0)
|
||||
Loading…
Reference in a new issue