-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathd4.py
50 lines (37 loc) · 1.26 KB
/
d4.py
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
38
39
40
41
42
43
44
45
46
47
48
49
50
from collections import Counter
from collections.abc import Iterable
from attrs import define
@define
class _InputCards:
card_id: int
winning: list[int]
own: list[int]
def _parse_input(lines: Iterable[str]) -> Iterable[_InputCards]:
for line in lines:
card_id, numbers_str = line[4:].split(":")
winning_str, own_str = numbers_str.strip().split("|")
yield _InputCards(
int(card_id.strip()),
[int(n) for n in winning_str.strip().split()],
[int(n) for n in own_str.strip().split()],
)
def p1(input_: str) -> int:
d = _parse_input(input_.splitlines())
result: int = 0
for cards in d:
matches = len(set(cards.winning) & set(cards.own))
if matches > 0:
result += 2 ** (matches - 1)
return result
def p2(input_str: str) -> int:
d = list(_parse_input(input_str.splitlines()))
counts: Counter[int] = Counter(range(1, len(d) + 1))
for cards in d:
matches = len(set(cards.winning) & set(cards.own))
card_count = counts[cards.card_id]
counts.update(
dict.fromkeys(
range(cards.card_id + 1, cards.card_id + 1 + matches), card_count
)
)
return sum(v for v in counts.values())