-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathday19.py
80 lines (53 loc) · 1.12 KB
/
day19.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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
import sys
import functools
inputfile = ""
if len(sys.argv) == 2:
inputfile = sys.argv[1] + ".txt"
else:
inputfile = "input" + sys.argv[0][3:5] + ".txt"
designs = []
with open(inputfile,"r") as input:
for line in input:
line = line.rstrip()
if "," in line:
towels = sorted(line.split(", "), key=len)
elif len(line) > 0:
designs.append(line)
@functools.cache
def find(pattern):
global towels
#print(pattern)
if len(pattern) == 0:
return 1
for t in towels:
if pattern.startswith(t):
if find(pattern[len(t):]):
return 1
return 0
@functools.cache
def count(pattern):
global towels
#print(pattern)
result = 0
if len(pattern) == 0:
return 1
for t in towels:
if pattern.startswith(t):
result += count(pattern[len(t):])
return result
def run_part1():
result = []
for d in designs:
result.append(find(d))
print(result)
print(result)
print(sum(result))
def run_part2():
result = []
for d in designs:
result.append(count(d))
print(result)
print(result)
print(sum(result))
run_part1()
run_part2()