-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
A variation of day 7, but with straights
- Loading branch information
Showing
1 changed file
with
273 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,273 @@ | ||
defmodule Day71 do | ||
def run(mode) do | ||
data1 = read_input(mode, 1) | ||
data2 = read_input(mode, 2) | ||
|
||
[{1, data1}, {2, data2}] | ||
|> Task.async_stream( | ||
fn | ||
{1, data} -> {1, data |> part1} | ||
{2, data} -> {2, data |> part2} | ||
end, | ||
timeout: :infinity | ||
) | ||
|> Enum.reduce({0, 0}, fn | ||
{_, {1, res}}, {_, p2} -> {res, p2} | ||
{_, {2, res}}, {p1, _} -> {p1, res} | ||
end) | ||
end | ||
|
||
@card_type_order %{ | ||
five_of_a_kind: 7, | ||
four_of_a_kind: 6, | ||
full_house: 5, | ||
straight: 4, | ||
three_of_a_kind: 3, | ||
two_pairs: 2, | ||
one_pair: 1, | ||
high_card: 0 | ||
} | ||
|
||
@card_order %{ | ||
?2 => 0, | ||
?3 => 1, | ||
?4 => 2, | ||
?5 => 3, | ||
?6 => 4, | ||
?7 => 5, | ||
?8 => 6, | ||
?9 => 7, | ||
?T => 8, | ||
?J => 9, | ||
?Q => 10, | ||
?K => 11, | ||
?A => 12 | ||
} | ||
|
||
@card_order_p2 %{ | ||
?J => 0, | ||
?2 => 1, | ||
?3 => 2, | ||
?4 => 3, | ||
?5 => 4, | ||
?6 => 5, | ||
?7 => 6, | ||
?8 => 7, | ||
?9 => 8, | ||
?T => 9, | ||
?Q => 10, | ||
?K => 11, | ||
?A => 12 | ||
} | ||
|
||
def read_input(:test, part) do | ||
"32T3K 765 | ||
T55J5 684 | ||
KK677 28 | ||
KTJJT 220 | ||
QQQJA 483" | ||
|> String.split("\n") | ||
|> prepare_data(part) | ||
end | ||
|
||
def read_input(:actual, part) do | ||
File.stream!("input-07") | ||
|> Enum.map(fn n -> n |> String.trim() end) | ||
|> prepare_data(part) | ||
end | ||
|
||
def prepare_data(data, 1) do | ||
data | ||
|> Enum.map(fn s -> | ||
[cards, bid] = String.split(s, " ", trim: true) | ||
bid = String.to_integer(bid) | ||
type = cards |> get_type(1) | ||
{card_mapper({type, cards}), bid} | ||
end) | ||
end | ||
|
||
def prepare_data(data, 2) do | ||
data | ||
|> Enum.map(fn s -> | ||
[cards, bid] = String.split(s, " ", trim: true) | ||
bid = String.to_integer(bid) | ||
type = cards |> get_type(2) | ||
{card_mapper_2({type, cards}), bid} | ||
end) | ||
end | ||
|
||
def get_type(cards, 1) do | ||
cards_by_card = | ||
cards | ||
|> String.split("", trim: true) | ||
|> Enum.reduce(Map.new(), fn c, map -> map |> Map.put(c, Map.get(map, c, 0) + 1) end) | ||
|
||
keys = Map.keys(cards_by_card) | ||
|
||
case keys |> Enum.count() do | ||
1 -> | ||
:five_of_a_kind | ||
|
||
4 -> | ||
:one_pair | ||
|
||
5 -> | ||
if is_straight(cards, 1) do | ||
:straight | ||
else | ||
:high_card | ||
end | ||
|
||
2 -> | ||
cnt = cards_by_card |> Map.get(keys |> Enum.at(0)) | ||
|
||
if cnt == 1 or cnt == 4 do | ||
:four_of_a_kind | ||
else | ||
:full_house | ||
end | ||
|
||
3 -> | ||
if cards_by_card |> Map.values() |> Enum.find(fn c -> c == 3 end) do | ||
:three_of_a_kind | ||
else | ||
:two_pairs | ||
end | ||
end | ||
end | ||
|
||
def get_type(cards, 2) do | ||
cards_by_card = | ||
cards | ||
|> String.split("", trim: true) | ||
|> Enum.reduce(Map.new(), fn c, map -> map |> Map.put(c, Map.get(map, c, 0) + 1) end) | ||
|
||
has_jokers = cards_by_card |> Map.has_key?("J") | ||
|
||
if has_jokers do | ||
joker_count = Map.get(cards_by_card, "J") | ||
|
||
if joker_count == 5 or joker_count == 4 do | ||
:five_of_a_kind | ||
else | ||
cards_no_jokers = cards_by_card |> Map.delete("J") | ||
keys = Map.keys(cards_no_jokers) | ||
key_count = keys |> Enum.count() | ||
|
||
cond do | ||
key_count == 1 -> | ||
:five_of_a_kind | ||
|
||
joker_count == 3 -> | ||
:four_of_a_kind | ||
|
||
joker_count == 2 and key_count == 2 -> | ||
:four_of_a_kind | ||
|
||
joker_count == 2 -> | ||
if is_straight(cards, 2) do | ||
:straight | ||
else | ||
:three_of_a_kind | ||
end | ||
|
||
joker_count == 1 and key_count == 2 -> | ||
if cards_no_jokers |> Map.get(keys |> Enum.at(0)) == 2 do | ||
:full_house | ||
else | ||
:four_of_a_kind | ||
end | ||
|
||
joker_count == 1 and key_count == 3 -> | ||
:three_of_a_kind | ||
|
||
true -> | ||
if is_straight(cards, 2) do | ||
:straight | ||
else | ||
:one_pair | ||
end | ||
end | ||
end | ||
else | ||
get_type(cards, 1) | ||
end | ||
end | ||
|
||
def is_straight(cards, 1), | ||
do: | ||
cards | ||
|> String.to_charlist() | ||
|> Enum.map(fn c -> @card_order[c] end) | ||
|> Enum.sort() | ||
|> is_straight_inner() | ||
|
||
def is_straight(cards, 2) do | ||
sorted = | ||
cards |> String.to_charlist() |> Enum.map(fn c -> @card_order_p2[c] end) |> Enum.sort() | ||
|
||
without_jokers = sorted |> Enum.filter(fn i -> i != 0 end) | ||
joker_count = 5 - Enum.count(without_jokers) | ||
is_straight_inner_jokers(without_jokers, joker_count) | ||
end | ||
|
||
def is_straight_inner([a, b, c, d, e]) | ||
when b == a + 1 and c == a + 2 and d == a + 3 and e == a + 4, | ||
do: true | ||
|
||
def is_straight_inner(_), do: false | ||
|
||
def is_straight_inner_jokers([a, b, c], 2) do | ||
cond do | ||
b == a + 1 and c == a + 2 -> true | ||
b == a + 1 and c == a + 3 -> true | ||
b == a + 1 and c == a + 4 -> true | ||
b == a + 2 and c == a + 3 -> true | ||
b == a + 2 and c == a + 4 -> true | ||
b == a + 3 and c == a + 4 -> true | ||
true -> false | ||
end | ||
end | ||
|
||
def is_straight_inner_jokers([a, b, c, d], 1) do | ||
cond do | ||
b == a + 1 and c == a + 2 and d == a + 3 -> true | ||
b == a + 1 and c == a + 2 and d == a + 4 -> true | ||
b == a + 1 and c == a + 3 and d == a + 4 -> true | ||
b == a + 2 and c == a + 3 and d == a + 4 -> true | ||
true -> false | ||
end | ||
end | ||
|
||
def part1(data) do | ||
{_, sum} = | ||
data | ||
|> Enum.sort() | ||
|> Enum.reduce({1, 0}, fn {_, bid}, {rank, sum} -> {rank + 1, rank * bid + sum} end) | ||
|
||
sum | ||
end | ||
|
||
def part2(data) do | ||
{_, sum} = | ||
data | ||
|> Enum.sort() | ||
|> Enum.reduce({1, 0}, fn {_, bid}, {rank, sum} -> {rank + 1, rank * bid + sum} end) | ||
|
||
sum | ||
end | ||
|
||
def card_mapper({type, cards}), do: card_str_to_int(cards, @card_type_order[type]) | ||
|
||
def card_str_to_int("", res), do: res | ||
|
||
def card_str_to_int(<<c::utf8, rest::binary>>, res), | ||
do: card_str_to_int(rest, res * 13 + @card_order[c]) | ||
|
||
def card_mapper_2({type, cards}), do: card_str_to_int_2(cards, @card_type_order[type]) | ||
|
||
def card_str_to_int_2("", res), do: res | ||
|
||
def card_str_to_int_2(<<c::utf8, rest::binary>>, res), | ||
do: card_str_to_int_2(rest, res * 13 + @card_order_p2[c]) | ||
end |