2021-12-21 12:43:10 -06:00
|
|
|
import ./common, std/[sequtils, algorithm, sugar, sets, strformat, strutils, tables, options, json, hashes, random]
|
|
|
|
|
2021-12-21 13:19:41 -06:00
|
|
|
const BOARD_POSITIONS = 10
|
2021-12-21 12:43:10 -06:00
|
|
|
|
2021-12-21 13:19:41 -06:00
|
|
|
proc p1(input: Lines): uint64 =
|
2021-12-21 12:43:10 -06:00
|
|
|
var scores = [0, 0]
|
|
|
|
var pos = [input[0].split(": ")[1].parseInt - 1, input[1].split(": ")[1].parseInt - 1]
|
|
|
|
var rollNum = 1
|
|
|
|
var turn = 0
|
2021-12-21 13:19:41 -06:00
|
|
|
while scores[0] < 1000 and scores[1] < 1000:
|
2021-12-21 12:43:10 -06:00
|
|
|
var move = 0
|
|
|
|
for _ in 1..3:
|
2021-12-21 13:19:41 -06:00
|
|
|
move += rollNum mod 100
|
2021-12-21 12:43:10 -06:00
|
|
|
inc rollNum
|
|
|
|
pos[turn] = (pos[turn] + move) mod BOARD_POSITIONS
|
|
|
|
scores[turn] += pos[turn] + 1
|
|
|
|
turn = (turn + 1) mod 2
|
|
|
|
uint64(scores[turn mod 2] * (rollNum - 1))
|
|
|
|
|
2021-12-21 13:19:41 -06:00
|
|
|
type DiracGamestate = tuple
|
|
|
|
scores: array[2, int]
|
|
|
|
positions: array[2, int]
|
|
|
|
turn: int
|
|
|
|
|
|
|
|
var turnOutcomes = newTable[DiracGamestate, array[2, uint64]]()
|
|
|
|
proc turn(g: DiracGamestate): array[2, uint64] =
|
|
|
|
if turnOutcomes.hasKey g: return turnOutcomes[g]
|
|
|
|
if g.scores[0] >= 21:
|
|
|
|
return [1'u64, 0]
|
|
|
|
elif g.scores[1] >= 21:
|
|
|
|
return [0'u64, 1]
|
|
|
|
for r in product(@[@[1,2,3],@[1,2,3],@[1,2,3]]):
|
|
|
|
let move = r.foldl(a + b)
|
|
|
|
var ng = g
|
|
|
|
ng.positions[ng.turn] = (ng.positions[ng.turn] + move) mod BOARD_POSITIONS
|
|
|
|
ng.scores[ng.turn] += ng.positions[ng.turn] + 1
|
|
|
|
ng.turn = (ng.turn + 1) mod 2
|
|
|
|
let r = turn(ng)
|
|
|
|
turnOutcomes[ng] = r
|
|
|
|
result[0] += r[0]
|
|
|
|
result[1] += r[1]
|
|
|
|
|
2021-12-21 12:43:10 -06:00
|
|
|
proc p2(input: Lines): uint64 =
|
2021-12-21 13:19:41 -06:00
|
|
|
var pos = [input[0].split(": ")[1].parseInt - 1, input[1].split(": ")[1].parseInt - 1]
|
|
|
|
var g: DiracGamestate = (scores: [0, 0], positions: pos, turn: 0)
|
|
|
|
let wins = turn(g)
|
|
|
|
wins.max
|
2021-12-21 12:43:10 -06:00
|
|
|
|
|
|
|
const input = """
|
|
|
|
Player 1 starting position: 4
|
|
|
|
Player 2 starting position: 8
|
|
|
|
""".strip().split('\n')
|
|
|
|
doDayX 21, (n: int) => n.loadInput, p1, p2, (input, 739785'u64, 444356092776315'u64)
|