Skip to content

Commit a4476f5

Browse files
committed
feat: day_22 (part 2)
1 parent 6d661ec commit a4476f5

File tree

2 files changed

+68
-0
lines changed

2 files changed

+68
-0
lines changed

day_22/main_day_22_2.py

+54
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
import sys
2+
import os
3+
from collections import defaultdict
4+
5+
try:
6+
from utils import measure_time
7+
except ImportError:
8+
project_root = os.path.abspath(
9+
os.path.join(os.path.dirname(__file__), ".."))
10+
sys.path.insert(0, project_root)
11+
from utils import measure_time
12+
13+
CURRENT_DIR = os.path.dirname(__file__)
14+
INPUT_FILE = os.path.join(CURRENT_DIR, "input.txt")
15+
16+
17+
@measure_time
18+
def get_most_bananas(input_file):
19+
with open(input_file, "r") as f:
20+
lines = list(map(int, f.readlines()))
21+
prices = []
22+
23+
for line in lines:
24+
price = []
25+
for _ in range(2000):
26+
line = ((line * 64) ^ line) % 16777216
27+
line = ((line // 32) ^ line) % 16777216
28+
line = ((line * 2048) ^ line) % 16777216
29+
price.append(line % 10) # get the last digit
30+
prices.append(price)
31+
32+
differences = [[b - a for a, b in zip(p, p[1:])] for p in prices]
33+
34+
amounts = defaultdict(int)
35+
for index, diff in enumerate(differences):
36+
seen = set()
37+
for i in range(len(diff) - 3):
38+
key = tuple(diff[i:i + 4])
39+
if key in seen:
40+
continue
41+
amounts[key] += prices[index][i + 4]
42+
seen.add(key)
43+
44+
return max(amounts.values())
45+
46+
47+
if __name__ == "__main__":
48+
try:
49+
result = get_most_bananas(INPUT_FILE)
50+
print(result)
51+
except Exception as e:
52+
print(f"An error occurred: {e}")
53+
exit(1)
54+
exit(0)

day_22/test_day_22_2.py

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
from main_day_22_2 import get_most_bananas
2+
3+
4+
def test_get_most_bananas(tmp_path):
5+
input_file = tmp_path / "input.txt"
6+
input_data = """1
7+
2
8+
3
9+
2024"""
10+
input_file.write_text(input_data)
11+
12+
result = get_most_bananas(str(input_file))
13+
print(result)
14+
assert result == 23

0 commit comments

Comments
 (0)