-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathday24_part02.fs
172 lines (140 loc) · 4.52 KB
/
day24_part02.fs
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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
module day24_part02
open AdventOfCode_2019.Modules
type Cells = int * int * int -> int
type Grid<'a when 'a : equality>(jagged: 'a[][]) =
let data = jagged
let maxX = (Array.length (data.[0])) - 1
let maxY = (Array.length data) - 1
let mutable formatItem = (fun x -> x.ToString())
member _.LastCol = maxX
member _.Width = maxX + 1
member _.LastRow = maxY
member _.Height = maxY + 1
member _.Item
with get(x, y) = data.[y].[x]
and set(x, y) v = data.[y].[x] <- v
member _.InBounds(x, y) = x >= 0 && x <= maxX && y >=0 && y <= maxY
member this.Flatten() =
seq{ for y in 0 .. maxY do
for x in 0 .. maxX do
yield ((x, y), data.[y].[x]) }
member this.Filter(pred) = this.Flatten() |> Seq.filter (snd >> pred)
member this.BorderingCoords(x, y) =
[| (x, y - 1); (x + 1, y); (x, y + 1); (x - 1, y); |]
member this.Bordering(x, y) =
this.BorderingCoords(x, y) |> Array.map this.TryGet
member this.Transform<'b when 'b : equality>
(generate: Grid<'a> -> int -> int -> 'b) : Grid<'b> =
[| for y in 0 .. maxY do
[| for x in 0 .. maxX do
generate this x y |] |]
|> Grid<'b>
member this.Get((x, y)) = this.[x, y]
member this.TryGet((x, y)) =
match this.InBounds(x, y) with
| true -> Some (this.Get((x, y)))
| false -> None
type Eris = Grid<char>
let toEris =
Array.map (fun (s: string) -> s.ToCharArray())
>> Eris
let lifeOrDeath current adjacent =
match current, adjacent with
| '#', 1 -> '#'
| '#', _ -> '.'
| '.', 1 | '.', 2 -> '#'
| _ -> '.'
let update (eris: Eris) x y =
eris.Bordering (x, y)
|> Array.choose id
|> Array.filter ((=) '#')
|> Array.length
|> lifeOrDeath eris.[x, y]
let biodiversity (eris: Eris) =
eris.Flatten ()
|> Seq.mapi (fun i (_, cell) ->
match cell with
| '#' -> 1 <<< i
| _ -> 0 )
|> Seq.sum
let buildGrids (zeroGrid: Eris) =
[-201 .. 201]
|> List.map (fun i -> i, zeroGrid.Transform (fun _ _ _ -> '.') )
|> Map
|> Map.add 0 zeroGrid
let getCells (grids: Map<int, Eris>) : Cells =
fun (x, y, z) ->
match grids.[z].[x, y] with
| '#' -> 1
| _ -> 0
let count (cells: Cells) coords =
coords
|> List.sumBy cells
let topRow (cells: Cells) z =
[(0, 0, z); (1, 0, z); (2, 0, z); (3, 0, z); (4, 0, z)]
|> count cells
let rightCol cells z =
[(4, 0, z); (4, 1, z); (4, 2, z); (4, 3, z); (4, 4, z)]
|> count cells
let bottomRow cells z =
[(0, 4, z); (1, 4, z); (2, 4, z); (3, 4, z); (4, 4, z)]
|> count cells
let leftCol cells z =
[(0, 0, z); (0, 1, z); (0, 2, z); (0, 3, z); (0, 4, z)]
|> count cells
let adjCount cells (x, y, z) =
let top =
match x, y with
| _, 0 -> cells (2, 1, (z - 1))
| 2, 3 -> bottomRow cells (z + 1)
| _, _ -> cells (x, y - 1, z)
let right =
match x, y with
| 4, _ -> cells (3, 2, (z - 1))
| 1, 2 -> leftCol cells (z + 1)
| _, _ -> cells (x + 1, y, z)
let bottom =
match x, y with
| _, 4 -> cells (2, 3, (z - 1))
| 2, 1 -> topRow cells (z + 1)
| _, _ -> cells (x, y + 1, z)
let left =
match x, y with
| 0, _ -> cells (1, 2, (z - 1))
| 3, 2 -> rightCol cells (z + 1)
| _, _ -> cells (x - 1, y, z)
top + right + bottom + left
let plutoniaUpdate adjCount z =
fun (eris: Eris) x y ->
match x, y with
| 2, 2 -> '?'
| _ -> lifeOrDeath eris.[x, y] (adjCount (x, y, z))
let plutonianTransform grids =
let range = (Map.count grids / 2)
let bugCount = adjCount (getCells grids)
[-range .. range]
|> List.map (fun z ->
let newGrid =
if abs z = range
then grids.[z]
else (grids.[z].Transform (plutoniaUpdate bugCount z))
z, newGrid)
|> Map
let rec multiPlutonianTransform grids count =
match count with
| 0 -> grids
| _ -> multiPlutonianTransform (plutonianTransform grids) (count - 1)
let bugCount (grids: Map<int, Eris>) =
grids
|> Map.toSeq
|> Seq.collect (fun (_, grid) -> grid.Flatten ())
|> Seq.filter (snd >> ((=) '#'))
|> Seq.length
let Part2 lines =
let grids = buildGrids (toEris lines)
let transformed = (multiPlutonianTransform grids 200)
bugCount transformed
let execute =
let path = "day24/day24_input.txt"
let content = LocalHelper.GetLinesFromFile path
Part2 content