-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsolve.py
45 lines (40 loc) · 1.08 KB
/
solve.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
import re
import os
from functools import reduce
import operator
bag = {
"red": 12,
"green": 13,
"blue": 14,
}
colors = bag.keys()
one = 0
two = 0
with open(os.path.dirname(__file__) + "/input.txt") as f:
for line in f.read().splitlines():
if len(line) == 0:
continue
m = re.match(r"Game (?P<id>\d+)", line)
game_id = int(m.group("id"))
m = re.findall(r"[:;] [^;]+", line[m.span()[1]:])
# part one
for s in m:
for c in colors:
r = re.search(rf" (\d+) {c}", s)
if r and int(r.group(1)) > bag[c]:
break
else:
continue
break
else:
one += game_id
# part two
minimal = {c: 0 for c in colors}
for s in m:
for c in colors:
r = re.search(rf" (\d+) {c}", s)
if r and (r:=int(r.group(1))) > minimal[c]:
minimal[c] = r
two += reduce(operator.mul, minimal.values())
print("Part One", one)
print("Part Two", two)