summaryrefslogtreecommitdiffstats
path: root/7.py
blob: 58fdbd83bd163ffd3d2494bc3f9d1a92abaa5724 (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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
# pyright: strict
from collections import Counter
from collections.abc import Callable
from sys import stdin
from typing import TypeAlias

Hand: TypeAlias = tuple[int, int, int, int, int]


def parse_hand(card_worth: dict[str, int], hand: str) -> Hand:
    ret = tuple(card_worth[c] for c in hand)
    if len(ret) != 5:
        raise ValueError
    return ret


def hand_type(c: list[tuple[int, int]]) -> int:
    if c[0][1] == 5:
        return 6
    if c[0][1] == 4:
        return 5
    if c[0][1] == 3 and c[1][1] == 2:
        return 4
    if c[0][1] == 3:
        return 3
    if c[0][1] == 2 and c[1][1] == 2:
        return 2
    if c[0][1] == 2:
        return 1
    return 0


def solve(
    cards: str,
    inp: list[tuple[str, int]],
    fudge_count: Callable[[Counter[int]], Counter[int]] = lambda x: x,
) -> int:
    card_worth = {c: i for i, c in enumerate(reversed(cards))}

    return sum(
        rank * bid
        for rank, (_, bid) in enumerate(
            sorted(
                ((parse_hand(card_worth, hand), bid) for hand, bid in inp),
                key=lambda i: (
                    hand_type(fudge_count(Counter(i[0])).most_common()),
                    i[0],
                ),
            ),
            start=1,
        )
    )


def p2_fudge(c: Counter[int]) -> Counter[int]:
    if 0 in c and c[0] != 5:
        target = next(e[0] for e in c.most_common() if e[0] != 0)
        c[target] += c[0]
        c[0] = 0
    return c


inp = [(l[0], int(l[1])) for l in (l.rstrip().split() for l in stdin)]
print(solve("AKQJT98765432", inp))
print(solve("AKQT98765432J", inp, fudge_count=p2_fudge))