|
| 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) |
0 commit comments