summary refs log tree commit diff stats
path: root/day9.fsx
blob: de64feacab71e7308b648e75726aad809b4cfb6a (plain) (blame)
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
open System.IO
open System.Text.RegularExpressions

let (|Regex|_|) input =
    let m = Regex.Match(input, "^(?:\((\w+?)\))(.*)")
    if m.Success then Some(List.tail [for g in m.Groups -> g.Value])
    else None

let splitPattern str =
    match str with 
    | Regex [marker; rest] -> marker, rest
    | _ -> "", ""

let rec decrypt str =
    if str = "" then ""
    else
        let marker, rest = splitPattern str
        if marker = "" then string str[0] + decrypt str[1..]
        else
            let nums = marker.Split 'x' |> Array.map int
            let start, count = (min nums[0] (String.length rest)), nums[1]
            String.replicate count rest[..start-1] + decrypt rest[start..]

let rec decryptLength str =
    if str = "" then bigint 0
    else
        let marker, rest = splitPattern str
        if marker = "" then bigint 1 + decryptLength str[1..]
        else
            let nums = marker.Split 'x' |> Array.map int
            let start, count = (min nums[0] (String.length rest)), nums[1]
            bigint count * decryptLength rest[..start-1] + decryptLength rest[start..]

let lines = File.ReadLines "day9.txt"
lines |> Seq.map decrypt |> Seq.map String.length |> Seq.reduce (+) |> printfn "%d"
lines |> Seq.map decryptLength |> Seq.reduce (+) |> printfn "%A"