AdventOfCode/2022/day2-v2.scala

41 lines
1.3 KiB
Scala
Raw Normal View History

2022-12-02 19:20:24 +10:30
import scala.io.Source
import scala.math.floorMod
2022-12-02 19:30:06 +10:30
extension (i: Int) def %%(modulus: Int) = floorMod(i, modulus)
2022-12-02 19:20:24 +10:30
enum RPS(val score: Int):
case Rock extends RPS(1)
case Paper extends RPS(2)
case Scissors extends RPS(3)
2022-12-02 19:30:06 +10:30
def +(amount: Int) = RPS.fromOrdinal((ordinal + amount) %% 3)
def -(amount: Int) = RPS.fromOrdinal((ordinal - amount) %% 3)
2022-12-02 19:20:24 +10:30
def -(other: RPS) = score - other.score
2022-12-02 19:30:06 +10:30
def vs(other: RPS) = (this - other) %% 3 match
2022-12-02 19:20:24 +10:30
case 1 => 6
case 2 => 0
case _ => 3
val moveMap = Map("A"->RPS.Rock, "B"->RPS.Paper, "C"->RPS.Scissors, "X"->RPS.Rock, "Y"->RPS.Paper, "Z"->RPS.Scissors)
@main def main() =
2022-12-03 17:22:53 +10:30
val strategyGuide = Source.fromFile("input/2").getLines.map(_.split(" ")).toArray // Can't leave it lazy as Part 1 will consume it
2022-12-02 19:20:24 +10:30
// val strategyGuide = Source.fromString("A Y\nB X\nC Z\n").getLines.map(_.split(" ")).toArray
// Part 1 - evaluate all moves in the guide using moveMap and tally score
println(strategyGuide.map(movePair=>
val theirMove = moveMap(movePair(0))
val ourMove = moveMap(movePair(1))
ourMove.score + (ourMove vs theirMove)
).sum)
// Part 2 - X->lose, Y->draw, Z->win
println(strategyGuide.map(movePair=>
val theirMove = moveMap(movePair(0))
val ourMove = movePair(1) match
case "X" => theirMove - 1
case "Y" => theirMove
case "Z" => theirMove + 1
ourMove.score + (ourMove vs theirMove)
).sum)