summaryrefslogtreecommitdiffstats
path: root/12.py
blob: 100c0106879d8c1343ea51c7fd76fa499cf9bcfe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
# pyright: strict
import fnmatch
from functools import cache
from sys import stdin


@cache
def matching(
    pattern: str, groups: tuple[int, ...], length: int, min_offset: int = 0
) -> int:
    if not groups:
        return 1 if "#" not in pattern else 0
    total = 0
    for offset in range(min_offset, length - sum(groups) - len(groups) + 2):
        base = "." * offset + "#" * groups[0]
        if not fnmatch.fnmatch(base, pattern[: len(base)]):
            continue
        total += matching(
            pattern[len(base) :], groups[1:], length - len(base), min_offset=1
        )
    return total


inp: list[tuple[str, tuple[int, ...]]] = []
for line in stdin:
    pattern, rest = line.rstrip().split(maxsplit=1)
    groups = tuple(map(int, rest.split(",")))
    inp.append((pattern, groups))


print(sum(matching(pattern, groups, len(pattern)) for pattern, groups in inp))

p2 = 0
for pattern, groups in inp:
    pattern = "?".join([pattern] * 5)
    p2 += matching(pattern, groups * 5, len(pattern))
print(p2)