Solutions for 2022, as well as 2015-2018 and 2019 up to day 11
This commit is contained in:
commit
1895197c49
722 changed files with 375457 additions and 0 deletions
90
2022/day02-rock_paper_scissors/:w
Normal file
90
2022/day02-rock_paper_scissors/:w
Normal file
|
@ -0,0 +1,90 @@
|
|||
use std::fs;
|
||||
|
||||
enum Hand {
|
||||
Rock = 1,
|
||||
Paper = 2,
|
||||
Scissors = 3,
|
||||
}
|
||||
|
||||
enum Outcome { Win, Loss, Draw }
|
||||
|
||||
struct Round {
|
||||
opponent_hand: Hand,
|
||||
player_hand: Hand,
|
||||
}
|
||||
|
||||
impl Round {
|
||||
fn outcome(&self) -> Outcome {
|
||||
match self.player_hand as i8 - self.opponent_hand as i8 {
|
||||
0 => Outcome::Draw,
|
||||
1 | -2 => Outcome::Win,
|
||||
_ => Outcome::Loss,
|
||||
}
|
||||
}
|
||||
fn points(&self) -> u32 {
|
||||
self.player_hand as u32 + match self.outcome() {
|
||||
Outcome::Loss => 0,
|
||||
Outcome::Draw => 3,
|
||||
Outcome::Win => 6,
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
fn read_file(path: &str) -> String {
|
||||
fs::read_to_string(path)
|
||||
.expect("File not Found")
|
||||
}
|
||||
|
||||
fn parse_round(line: &str, strat: u8) -> Round {
|
||||
let line = line.as_bytes();
|
||||
let opponent_hand = match line[0] {
|
||||
b'A' => Hand::Rock,
|
||||
b'B' => Hand::Paper,
|
||||
b'C' => Hand::Scissors,
|
||||
_ => panic!("Unexpected Token"),
|
||||
};
|
||||
let player_hand = match strat {
|
||||
1 => {
|
||||
match line[2] {
|
||||
b'X' => Hand::Rock,
|
||||
b'Y' => Hand::Paper,
|
||||
b'Z' => Hand::Scissors,
|
||||
_ => panic!("Unexpected Token"),
|
||||
}
|
||||
},
|
||||
2 => {
|
||||
match line[2] {
|
||||
b'X' => match opponent_hand {
|
||||
Hand::Rock => Hand::Scissors,
|
||||
Hand::Paper => Hand::Rock,
|
||||
Hand::Scissors => Hand::Paper,
|
||||
}, // Lose
|
||||
b'Y' => opponent_hand, // Draw
|
||||
b'Z' => match opponent_hand{
|
||||
Hand::Rock => Hand::Paper,
|
||||
Hand::Paper => Hand::Scissors,
|
||||
Hand::Scissors => Hand::Rock,
|
||||
}, // Win
|
||||
_ => panic!("Unexpected Token"),
|
||||
}
|
||||
}
|
||||
};
|
||||
Round { opponent_hand, player_hand }
|
||||
}
|
||||
|
||||
fn main() {
|
||||
let contents = read_file("input");
|
||||
|
||||
let mut tally1 = 0;
|
||||
let mut tally2 = 0;
|
||||
for line in contents.lines() {
|
||||
if line.len() == 3 {
|
||||
let round1 = parse_round(line, 1);
|
||||
let round2 = parse_round(line, 2);
|
||||
tally1 += round1.points();
|
||||
tally2 += round2.points();
|
||||
}
|
||||
}
|
||||
println!("Total Points (Strat 1): {tally1}");
|
||||
println!("Total Points (Strat 2): {tally2}");
|
||||
}
|
8
2022/day02-rock_paper_scissors/Cargo.toml
Normal file
8
2022/day02-rock_paper_scissors/Cargo.toml
Normal file
|
@ -0,0 +1,8 @@
|
|||
[package]
|
||||
name = "day02-rock_paper_scissors"
|
||||
version = "0.1.0"
|
||||
edition = "2021"
|
||||
|
||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||
|
||||
[dependencies]
|
36
2022/day02-rock_paper_scissors/challenge.md
Normal file
36
2022/day02-rock_paper_scissors/challenge.md
Normal file
|
@ -0,0 +1,36 @@
|
|||
--- Day 2: Rock Paper Scissors ---
|
||||
|
||||
The Elves begin to set up camp on the beach. To decide whose tent gets to be closest to the snack storage, a giant Rock Paper Scissors tournament is already in progress.
|
||||
|
||||
Rock Paper Scissors is a game between two players. Each game contains many rounds; in each round, the players each simultaneously choose one of Rock, Paper, or Scissors using a hand shape. Then, a winner for that round is selected: Rock defeats Scissors, Scissors defeats Paper, and Paper defeats Rock. If both players choose the same shape, the round instead ends in a draw.
|
||||
|
||||
Appreciative of your help yesterday, one Elf gives you an encrypted strategy guide (your puzzle input) that they say will be sure to help you win. "The first column is what your opponent is going to play: A for Rock, B for Paper, and C for Scissors. The second column--" Suddenly, the Elf is called away to help with someone's tent.
|
||||
|
||||
The second column, you reason, must be what you should play in response: X for Rock, Y for Paper, and Z for Scissors. Winning every time would be suspicious, so the responses must have been carefully chosen.
|
||||
|
||||
The winner of the whole tournament is the player with the highest score. Your total score is the sum of your scores for each round. The score for a single round is the score for the shape you selected (1 for Rock, 2 for Paper, and 3 for Scissors) plus the score for the outcome of the round (0 if you lost, 3 if the round was a draw, and 6 if you won).
|
||||
|
||||
Since you can't be sure if the Elf is trying to help you or trick you, you should calculate the score you would get if you were to follow the strategy guide.
|
||||
|
||||
For example, suppose you were given the following strategy guide:
|
||||
|
||||
A Y
|
||||
B X
|
||||
C Z
|
||||
This strategy guide predicts and recommends the following:
|
||||
|
||||
In the first round, your opponent will choose Rock (A), and you should choose Paper (Y). This ends in a win for you with a score of 8 (2 because you chose Paper + 6 because you won).
|
||||
In the second round, your opponent will choose Paper (B), and you should choose Rock (X). This ends in a loss for you with a score of 1 (1 + 0).
|
||||
The third round is a draw with both players choosing Scissors, giving you a score of 3 + 3 = 6.
|
||||
In this example, if you were to follow the strategy guide, you would get a total score of 15 (8 + 1 + 6).
|
||||
|
||||
--- Part Two ---
|
||||
|
||||
The Elf finishes helping with the tent and sneaks back over to you. "Anyway, the second column says how the round needs to end: X means you need to lose, Y means you need to end the round in a draw, and Z means you need to win. Good luck!"
|
||||
|
||||
The total score is still calculated in the same way, but now you need to figure out what shape to choose so the round ends as indicated. The example above now goes like this:
|
||||
|
||||
In the first round, your opponent will choose Rock (A), and you need the round to end in a draw (Y), so you also choose Rock. This gives you a score of 1 + 3 = 4.
|
||||
In the second round, your opponent will choose Paper (B), and you choose Rock so you lose (X) with a score of 1 + 0 = 1.
|
||||
In the third round, you will defeat your opponent's Scissors with Rock for a score of 1 + 6 = 7.
|
||||
Now that you're correctly decrypting the ultra top secret strategy guide, you would get a total score of 12.
|
2501
2022/day02-rock_paper_scissors/input
Normal file
2501
2022/day02-rock_paper_scissors/input
Normal file
File diff suppressed because it is too large
Load diff
107
2022/day02-rock_paper_scissors/src/main.rs
Normal file
107
2022/day02-rock_paper_scissors/src/main.rs
Normal file
|
@ -0,0 +1,107 @@
|
|||
use std::fs;
|
||||
|
||||
#[derive(Copy, Clone)]
|
||||
enum Hand {
|
||||
Rock = 1,
|
||||
Paper = 2,
|
||||
Scissors = 3,
|
||||
}
|
||||
|
||||
impl Hand {
|
||||
fn that_beats(other: Self) -> Self {
|
||||
match other {
|
||||
Self::Rock => Self::Paper,
|
||||
Self::Paper => Self::Scissors,
|
||||
Self::Scissors => Self::Rock,
|
||||
}
|
||||
}
|
||||
fn that_is_beaten_by(other: Self) -> Self {
|
||||
Self::that_beats(Self::that_beats(other))
|
||||
}
|
||||
}
|
||||
|
||||
enum Outcome { Win, Loss, Draw }
|
||||
|
||||
struct Round {
|
||||
opponent_hand: Hand,
|
||||
player_hand: Hand,
|
||||
}
|
||||
|
||||
impl Round {
|
||||
fn outcome(&self) -> Outcome {
|
||||
match self.player_hand as i8 - self.opponent_hand as i8 {
|
||||
0 => Outcome::Draw,
|
||||
1 | -2 => Outcome::Win,
|
||||
_ => Outcome::Loss,
|
||||
}
|
||||
}
|
||||
fn points(&self) -> u32 {
|
||||
self.player_hand as u32 + match self.outcome() {
|
||||
Outcome::Loss => 0,
|
||||
Outcome::Draw => 3,
|
||||
Outcome::Win => 6,
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
fn read_file(path: &str) -> String {
|
||||
fs::read_to_string(path)
|
||||
.expect("File not Found")
|
||||
}
|
||||
|
||||
fn parse_round(line: &str, strat: u8) -> Round {
|
||||
let line = line.as_bytes();
|
||||
let opponent_hand = match line[0] {
|
||||
b'A' => Hand::Rock,
|
||||
b'B' => Hand::Paper,
|
||||
b'C' => Hand::Scissors,
|
||||
_ => panic!("Unexpected Token"),
|
||||
};
|
||||
let player_hand = match strat {
|
||||
1 => {
|
||||
match line[2] {
|
||||
b'X' => Hand::Rock,
|
||||
b'Y' => Hand::Paper,
|
||||
b'Z' => Hand::Scissors,
|
||||
_ => panic!("Unexpected Token"),
|
||||
}
|
||||
},
|
||||
2 => {
|
||||
match line[2] {
|
||||
b'X' => Hand::that_is_beaten_by(opponent_hand),
|
||||
b'Y' => opponent_hand,
|
||||
b'Z' => Hand::that_beats(opponent_hand),
|
||||
_ => panic!("Unexpected Token"),
|
||||
}
|
||||
},
|
||||
_ => panic!("Unexpected Strat"),
|
||||
};
|
||||
Round { opponent_hand, player_hand }
|
||||
}
|
||||
|
||||
fn get_tally(moves: &str, strat: u8) -> u32 {
|
||||
moves.lines()
|
||||
.filter(|l| l.len() == 3)
|
||||
.map(|l| parse_round(l, strat).points())
|
||||
.sum()
|
||||
}
|
||||
|
||||
fn main() {
|
||||
let contents = read_file("input");
|
||||
println!("Total Points (Strat 1): {}", get_tally(&contents, 1));
|
||||
println!("Total Points (Strat 2): {}", get_tally(&contents, 2));
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn sample_input() {
|
||||
let contents = read_file("tests/sample_input");
|
||||
assert_eq!(get_tally(&contents, 1), 15);
|
||||
assert_eq!(get_tally(&contents, 2), 12);
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn challenge_input() {
|
||||
let contents = read_file("tests/input");
|
||||
assert_eq!(get_tally(&contents, 1), 12458);
|
||||
assert_eq!(get_tally(&contents, 2), 12683);
|
||||
}
|
2501
2022/day02-rock_paper_scissors/tests/input
Normal file
2501
2022/day02-rock_paper_scissors/tests/input
Normal file
File diff suppressed because it is too large
Load diff
3
2022/day02-rock_paper_scissors/tests/sample_input
Normal file
3
2022/day02-rock_paper_scissors/tests/sample_input
Normal file
|
@ -0,0 +1,3 @@
|
|||
A Y
|
||||
B X
|
||||
C Z
|
Loading…
Add table
Add a link
Reference in a new issue