This commit is contained in:
Grimmauld 2024-12-05 11:21:11 +01:00
parent 1345fe3e8d
commit e1c70e7827
Signed by: Grimmauld
SSH key fingerprint: SHA256:Q8IL6Y7sSKqzkyFdV1L0O/EflEh1fFV3tBtwxpapRH4
3 changed files with 1392 additions and 0 deletions

23
day5/default.nix Normal file
View file

@ -0,0 +1,23 @@
{ lib, utils, ... }:
with lib;
with builtins;
with utils;
let
input_parts = reSplit "\n\n" (readFile ./input);
orders = map (reSplit "\\|") (reSplit "\n" (head input_parts));
records = map (reSplit ",") (init (reSplit "\n" (last input_parts)));
# defines mapping of number -> [ blocked numbers that can't come after. Sorted for readability. ]
blocking = mapAttrs (_: v: map head v |> naturalSort |> unique ) (groupBy last orders);
isValid = r: all (i: let p = elemAt r i; in !hasAttr p blocking || (intersectLists (drop (i + 1) r ) blocking."${p}") == [] ) (listRange r);
sortRecord = r: if r == [] then [] else (let
h = head r;
intersect = if !hasAttr h blocking then [] else intersectLists (tail r ) blocking."${h}";
# Idea: check first element, and pull all "bad" elements ahead. If there is no "bad" elements, take the head and go down.
in if intersect == [] then [h] ++ sortRecord (tail r) else sortRecord (intersect ++ [ h ] ++ (removeAll intersect (tail r))) );
in {
part1 = filter isValid records |> map elemAtMid |> listSumWith toInt;
part2 = filter (invert isValid) records |> map sortRecord |> map elemAtMid |> listSumWith toInt;
}

1367
day5/input Normal file

File diff suppressed because it is too large Load diff

View file

@ -15,4 +15,6 @@ with builtins; rec {
listRange = l: range 0 ((length l) - 1);
transpose = l: map (i: map ((flip elemAt) i) l) (listRange (head l));
invert = f: x: !(f x);
elemAtMid = l: elemAt l ((length l) / 2);
removeAll = rl: (flip pipe) (map remove rl);
}