Watch
1
0
Fork
You've already forked advent-of-code
0
advent-of-code/2023/day07.nim
2023-12-06 22:01:36 -08:00

179 lines
3.4 KiB
Nim

import std/algorithm
import std/enumerate
import std/math
import std/sequtils
import std/sets
import std/strscans
import std/strutils
import std/sugar
import std/tables
type Hand = tuple
cards: seq[int]
bid: int
func parseCard(c: char): int =
case c:
of 'A': 14
of 'K': 13
of 'Q': 12
of 'J': 11
of 'T': 10
of '9': 9
of '8': 8
of '7': 7
of '6': 6
of '5': 5
of '4': 4
of '3': 3
of '2': 2
else: 0
func parseHand(text: string): Hand =
let parts = text.strip.splitWhitespace
(parts[0].map(parseCard), parts[1].parseInt)
func parseHands(text: string): seq[Hand] =
text.strip.splitLines.map(parseHand)
type Strength {.pure.} = enum
High
Pair
TwoPair
Three
Full
Four
Five
func strength(hand: Hand): Strength =
let count = newCountTable(hand.cards)
var counts: CountTable[int]
for v in values(count):
counts.inc v
if counts[5] > 0:
return Five
if counts[4] > 0:
return Four
if counts[3] > 0:
if counts[2] > 0:
return Full
else:
return Three
if counts[2] == 2:
return TwoPair
if counts[2] == 1:
return Pair
return High
func cmpHand(a: Hand, b: Hand): int =
let strength = cmp(a.strength, b.strength)
if strength != 0:
return strength
for (aa, bb) in zip(a.cards, b.cards):
let card = cmp(aa, bb)
if card != 0:
return card
proc dbg[T](v: T): T = (echo(v); v)
proc part1(): int =
let text = readFile("input/day07.txt")
var hands = parseHands(text)
hands.sort(cmpHand)
for (rank, hand) in enumerate(hands):
result += (rank + 1) * hand.bid
func strengthJoker(hand: Hand): Strength =
let count = newCountTable(hand.cards)
let jokers = count[1]
var regular: CountTable[int]
for card, count in pairs(count):
if card == 1:
continue
regular.inc count
if regular[5] > 0:
return Five
if regular[4] > 0:
if jokers == 1:
return Five
return Four
if regular[3] > 0:
case jokers:
of 2: return Five
of 1: return Four
else: discard
if regular[2] > 0:
return Full
return Three
if regular[2] == 2:
if jokers == 1:
return Full
return TwoPair
if regular[2] == 1:
case jokers:
of 3: return Five
of 2: return Four
of 1: return Three
else: return Pair
case jokers:
of 5: return Five
of 4: return Five
of 3: return Four
of 2: return Three
of 1: return Pair
else: return High
func cmpHandJoker(a: Hand, b: Hand): int =
let strength = cmp(a.strengthJoker, b.strengthJoker)
if strength != 0:
return strength
for (aa, bb) in zip(a.cards, b.cards):
let card = cmp(aa, bb)
if card != 0:
return card
func parseCardJoker(c: char): int =
case c:
of 'A': 14
of 'K': 13
of 'Q': 12
of 'J': 1
of 'T': 10
of '9': 9
of '8': 8
of '7': 7
of '6': 6
of '5': 5
of '4': 4
of '3': 3
of '2': 2
else: 0
func parseHandJoker(text: string): Hand =
let parts = text.strip.splitWhitespace
(parts[0].map(parseCardJoker), parts[1].parseInt)
func parseHandsJoker(text: string): seq[Hand] =
text.strip.splitLines.map(parseHandJoker)
proc part2(): int =
let text = readFile("input/day07.txt")
var hands = parseHandsJoker(text)
hands.sort(cmpHandJoker)
for (rank, hand) in enumerate(hands):
result += (rank + 1) * hand.bid
echo part1()
echo part2()