-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathday19.roc
89 lines (76 loc) · 1.9 KB
/
day19.roc
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
81
82
83
84
85
86
87
88
89
app [part1, part2] {
pf: platform "https://github.com/ostcar/roc-aoc-platform/releases/download/v0.0.8/lhFfiil7mQXDOB6wN-jduJQImoT8qRmoiNHDB4DVF9s.tar.br",
}
part1 = \input ->
input
|> parse?
|> \{ pattern, designList } ->
designList
|> List.countIf \design ->
run design pattern (Dict.empty {})
|> .0
|> \n -> n > 0
|> Num.toStr
|> Ok
part2 = \input ->
input
|> parse?
|> \{ pattern, designList } ->
designList
|> List.map \design ->
run design pattern (Dict.empty {})
|> .0
|> List.sum
|> Num.toStr
|> Ok
run = \design, pattern, cache ->
if design == "" then
v = 1
newCache = Dict.insert cache design v
(v, newCache)
else
when Dict.get cache design is
Ok v -> (v, cache)
Err KeyNotFound ->
pattern
|> List.walk (0, cache) \(n, accCache), p ->
if Str.startsWith design p then
Str.dropPrefix design p
|> run pattern accCache
|> \(r, newCache) ->
(r + n, newCache)
else
(n, accCache)
|> \(v, tCache) ->
newCache = Dict.insert tCache design v
(v, newCache)
parse : Str -> Result { pattern : List Str, designList : List Str } _
parse = \input ->
{ before, after } = input |> Str.splitFirst? "\n\n"
pattern =
before
|> Str.splitOn ", "
designList =
after
|> Str.splitOn "\n"
Ok { pattern, designList }
example =
"""
r, wr, b, g, bwu, rb, gb, br
brwrr
bggr
gbbr
rrbgbr
ubwu
bwurrg
brgr
bbrgwb
"""
expect
got = part1 example
expected = Ok "6"
got == expected
expect
got = part2 example
expected = Ok "16"
got == expected