Last active
December 30, 2021 15:46
-
-
Save joshbduncan/175c4b42fc9cf3d543dbee42f5fbd8ee to your computer and use it in GitHub Desktop.
Advent of Code 2021 - Day 22
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from collections import defaultdict | |
def cube_vol(b): | |
x1, x2 = b[0] | |
y1, y2 = b[1] | |
z1, z2 = b[2] | |
return (abs(x2 - x1) + 1) * (abs(y2 - y1) + 1) * (abs(z2 - z1) + 1) | |
def overlaps(b1, b2): | |
ans = [] | |
for n1, n2 in zip(b1, b2): | |
if n1[1] < n2[0] or n2[1] < n1[0]: | |
return None | |
bounds = (max(n1[0], n2[0]), min(n1[1], n2[1])) | |
ans.append(bounds) | |
return tuple(ans) | |
def wrangle(data, ignore=False): | |
steps = [] | |
for line in data: | |
switch, coords = line.split(" ") | |
bounds = tuple( | |
tuple(int(p) for p in l[2:].split("..")) for l in coords.split(",") | |
) | |
x, y, z = bounds | |
if ignore: | |
if ( | |
-ignore <= int(x[0]) <= ignore | |
and -ignore <= int(x[1]) <= ignore | |
and -ignore <= int(y[0]) <= ignore | |
and -ignore <= int(y[1]) <= ignore | |
and -ignore <= int(z[0]) <= ignore | |
and -ignore <= int(z[1]) <= ignore | |
): | |
steps.append((switch == "on", bounds)) | |
else: | |
steps.append((switch == "on", bounds)) | |
return steps | |
def count(steps): | |
counts = defaultdict(int) | |
for i in range(len(steps)): | |
switch, bounds = steps[i] | |
updates = defaultdict(int) | |
keys = set(counts.keys()) | |
for cube in keys: | |
overlapping = overlaps(bounds, cube) | |
if not overlapping: | |
continue | |
updates[overlapping] -= counts[cube] | |
if switch: | |
updates[bounds] += 1 | |
for c in updates: | |
counts[c] += updates[c] | |
return counts | |
data = open("day22.in").read().strip().split("\n") | |
# part 1 | |
steps = wrangle(data, 50) | |
counts = count(steps) | |
p1 = 0 | |
for cube in counts: | |
p1 += cube_vol(cube) * counts[cube] | |
print(f"Part 1: {p1}") | |
# part 2 | |
steps = wrangle(data) | |
counts = count(steps) | |
p2 = 0 | |
for cube in counts: | |
p2 += cube_vol(cube) * counts[cube] | |
print(f"Part 2: {p2}") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment