Skip to content

Commit 05d8075

Browse files
committedDec 19, 2024
feat: day_19 (part 2)
1 parent 0d4af9f commit 05d8075

File tree

2 files changed

+77
-0
lines changed

2 files changed

+77
-0
lines changed
 

‎day_19/main_day_19_2.py

+57
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
1+
import sys
2+
import os
3+
4+
try:
5+
from utils import measure_time
6+
except ImportError:
7+
project_root = os.path.abspath(
8+
os.path.join(os.path.dirname(__file__), ".."))
9+
sys.path.insert(0, project_root)
10+
from utils import measure_time
11+
12+
CURRENT_DIR = os.path.dirname(__file__)
13+
INPUT_FILE = os.path.join(CURRENT_DIR, "input.txt")
14+
15+
16+
def count_ways_to_form_design(design, patterns):
17+
cache = {}
18+
19+
def count_ways(remaining_design):
20+
if remaining_design in cache:
21+
return cache[remaining_design]
22+
if not remaining_design:
23+
return 1
24+
total_ways = 0
25+
for pattern in patterns:
26+
if remaining_design.startswith(pattern):
27+
total_ways += count_ways(remaining_design[len(pattern):])
28+
29+
cache[remaining_design] = total_ways
30+
return total_ways
31+
32+
return count_ways(design)
33+
34+
35+
@measure_time
36+
def sum_all_possible_ways(input_file):
37+
with open(input_file, "r") as f:
38+
lines = f.read().strip().split("\n")
39+
40+
patterns = lines[0].split(", ")
41+
designs = [line.strip() for line in lines[2:]]
42+
43+
total_ways = 0
44+
for design in designs:
45+
total_ways += count_ways_to_form_design(design, patterns)
46+
47+
return total_ways
48+
49+
50+
if __name__ == "__main__":
51+
try:
52+
result = sum_all_possible_ways(INPUT_FILE)
53+
print(result)
54+
except Exception as e:
55+
print(f"An error occurred: {e}")
56+
exit(1)
57+
exit(0)

‎day_19/test_day_19_2.py

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
from main_day_19_2 import sum_all_possible_ways
2+
3+
4+
def test_sum_all_possible_ways(tmp_path):
5+
input_file = tmp_path / "input.txt"
6+
input_data = """r, wr, b, g, bwu, rb, gb, br
7+
8+
brwrr
9+
bggr
10+
gbbr
11+
rrbgbr
12+
ubwu
13+
bwurrg
14+
brgr
15+
bbrgwb"""
16+
input_file.write_text(input_data)
17+
18+
result = sum_all_possible_ways(str(input_file))
19+
print(result)
20+
assert result == 16

0 commit comments

Comments
 (0)
Please sign in to comment.