From 1e74b21dc58b1052666ae64b916de6694e3e0227 Mon Sep 17 00:00:00 2001 From: Adam Millerchip Date: Mon, 4 Dec 2023 18:00:25 +0900 Subject: [PATCH 1/2] Day 4 part 1 --- 2023/day4.exs | 68 +++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 68 insertions(+) create mode 100644 2023/day4.exs diff --git a/2023/day4.exs b/2023/day4.exs new file mode 100644 index 0000000..9b02eab --- /dev/null +++ b/2023/day4.exs @@ -0,0 +1,68 @@ +defmodule Day4 do + def part1(input) do + input + |> Enum.map(fn {_id, winning, have} -> + case MapSet.intersection(winning, have) |> MapSet.size() do + 0 -> 0 + num_winners -> 2 ** (num_winners - 1) + end + end) + |> Enum.sum() + end + + def part2(_input) do + :ok + end + + def input do + with [input_filename] <- System.argv(), + {:ok, input} <- File.read(input_filename) do + input + |> String.split("\n", trim: true) + |> Enum.map(fn line -> + [card_id, winning, have] = String.split(line, [": ", " | "]) + ["Card", id] = String.split(card_id, " ", trim: true) + + [winning, have] = + for cards <- [winning, have], + do: cards |> String.split(" ", trim: true) |> MapSet.new(&String.to_integer/1) + + {String.to_integer(id), winning, have} + end) + else + _ -> :error + end + end + + ####################### + # HERE BE BOILERPLATE # + ####################### + + def run do + case input() do + :error -> print_usage() + input -> run_parts_with_timer(input) + end + end + + defp run_parts_with_timer(input) do + run_with_timer(1, fn -> part1(input) end) + run_with_timer(2, fn -> part2(input) end) + end + + defp run_with_timer(part, fun) do + {time, result} = :timer.tc(fun) + IO.puts("Part #{part} (completed in #{format_time(time)}):\n") + IO.puts("#{inspect(result)}\n") + end + + defp format_time(μsec) when μsec < 1_000, do: "#{μsec}μs" + defp format_time(μsec) when μsec < 1_000_000, do: "#{μsec / 1000}ms" + defp format_time(μsec), do: "#{μsec / 1_000_000}s" + + defp print_usage do + IO.puts("Usage: elixir day4.exs input_filename") + end +end + +# Day4.run() From dce598de721ed13eab1f3c3719a967d944f1144f Mon Sep 17 00:00:00 2001 From: Adam Millerchip Date: Mon, 4 Dec 2023 20:11:26 +0900 Subject: [PATCH 2/2] 2023 Day 4 part 2 --- 2023/day4.exs | 33 +++++++++++++++++++++++++++------ 1 file changed, 27 insertions(+), 6 deletions(-) mode change 100644 => 100755 2023/day4.exs diff --git a/2023/day4.exs b/2023/day4.exs old mode 100644 new mode 100755 index 9b02eab..80c6784 --- a/2023/day4.exs +++ b/2023/day4.exs @@ -1,8 +1,9 @@ +#!/usr/bin/env elixir defmodule Day4 do def part1(input) do input - |> Enum.map(fn {_id, winning, have} -> - case MapSet.intersection(winning, have) |> MapSet.size() do + |> Enum.map(fn {_id, num_winners} -> + case num_winners do 0 -> 0 num_winners -> 2 ** (num_winners - 1) end @@ -10,8 +11,26 @@ defmodule Day4 do |> Enum.sum() end - def part2(_input) do - :ok + def part2(input) do + input + |> Enum.sort_by(fn {id, _num_winners} -> id end) + |> Enum.map(fn {_id, num_winners} -> {_num_copies = 1, num_winners} end) + |> copy() + |> Enum.map(fn {num_copies, _num_winners} -> num_copies end) + |> Enum.sum() + end + + def copy([]), do: [] + + def copy([{above_num_copies, num_winners} = current | rest]) do + {to_copy, left_alone} = Enum.split(rest, num_winners) + + copied = + Enum.map(to_copy, fn {below_num_copies, num_winners} -> + {above_num_copies + below_num_copies, num_winners} + end) + + [current | copy(copied ++ left_alone)] end def input do @@ -27,7 +46,9 @@ defmodule Day4 do for cards <- [winning, have], do: cards |> String.split(" ", trim: true) |> MapSet.new(&String.to_integer/1) - {String.to_integer(id), winning, have} + num_winners = MapSet.intersection(winning, have) |> MapSet.size() + + {String.to_integer(id), num_winners} end) else _ -> :error @@ -65,4 +86,4 @@ defmodule Day4 do end end -# Day4.run() +Day4.run()