Compare commits

...

2 Commits

Author SHA1 Message Date
Julius b3434735e6
Day 12 but faster
continuous-integration/drone/push Build is passing Details
2021-12-12 13:12:38 +01:00
Julius 148f240696
Day 12 but bad 2021-12-12 13:08:29 +01:00
4 changed files with 217 additions and 1 deletions

21
input/day12 Normal file
View File

@ -0,0 +1,21 @@
KF-sr
OO-vy
start-FP
FP-end
vy-mi
vy-KF
vy-na
start-sr
FP-lh
sr-FP
na-FP
end-KF
na-mi
lh-KF
end-lh
na-start
wp-KF
mi-KF
vy-sr
vy-lh
sr-mi

View File

@ -81,6 +81,7 @@ fn do_flash(mut hm: &mut FlashMap, mut flashing: &mut Vec<(i32, i32)>, mut flash
}
}
#[allow(unused)]
fn print_flashes(map: &FlashMap, x_max: i32, y_max: i32) {
let mut v: Vec<Vec<i32>> = Vec::new();
for y in 0..y_max {

191
src/day12.rs Normal file
View File

@ -0,0 +1,191 @@
use std::collections::HashMap;
use crate::Day;
pub struct Day12(HashMap<String, Cave>);
impl Day for Day12 {
fn init(content: String) -> anyhow::Result<Self> {
let mut caves = HashMap::new();
for line in content.lines() {
let z = line.split('-').collect::<Vec<_>>();
let first = z[0];
let second = z[1];
{
let first_cave = caves.entry(first.to_string()).or_insert(Cave::new(first.into()));
first_cave.add_connection(second);
}
{
let second_cave = caves.entry(second.to_string()).or_insert(Cave::new(second.into()));
second_cave.add_connection(first);
}
}
Ok(Self(caves))
}
fn part1(&self) -> anyhow::Result<String> {
let m = HashMap::new();
Ok(format!("{}", self.search("start", &m, true)))
}
fn part2(&self) -> anyhow::Result<String> {
let m = HashMap::new();
Ok(format!("{}", self.search("start", &m, false)))
}
}
#[derive(Ord, PartialOrd, Eq, PartialEq, Copy, Clone)]
enum CaveType {
Large,
Small,
}
#[derive(Ord, PartialOrd, Eq, PartialEq, Clone)]
struct Cave {
connections: Vec<String>,
cave_type: CaveType,
}
impl Cave {
fn add_connection<T>(&mut self, name: T) where T: ToString {
self.connections.push(name.to_string());
self.connections.sort();
self.connections.dedup();
}
fn new(cave_name: String) -> Self {
let cave_type = if cave_name.chars().nth(0).unwrap().is_uppercase() {
CaveType::Large
} else {
CaveType::Small
};
Self {
cave_type,
connections: vec![],
}
}
}
impl Day12 {
fn search(&self, cur: &str, had: &HashMap<String, i32>, part1: bool) -> i32 {
let mut had = had.clone();
if had.values().any(|&i| i > 1) || part1 {
if had.contains_key(cur) {
return 0;
}
}
if cur == "start" && had.contains_key("start") {
return 0;
}
if cur == "end" {
return 1;
}
let n = self.0.get(cur).unwrap();
if n.cave_type == CaveType::Small {
let e = had.entry(cur.into()).or_insert(0);
*e += 1;
}
return n.connections.iter().map(|c| self.search(c, &mut had, part1)).sum::<i32>();
}
}
#[cfg(test)]
mod tests {
use crate::{Day, Day12};
const INPUT_1: &str = r"start-A
start-b
A-c
A-b
b-d
A-end
b-end";
const INPUT_2: &str = r"dc-end
HN-start
start-kj
dc-start
dc-HN
LN-dc
HN-end
kj-sa
kj-HN
kj-dc";
const INPUT_3: &str = r"fs-end
he-DX
fs-he
start-DX
pj-DX
end-zg
zg-sl
zg-pj
pj-he
RW-he
fs-DX
pj-RW
zg-RW
start-pj
he-WI
zg-he
pj-fs
start-RW";
#[test]
fn part1_test_1() -> anyhow::Result<()> {
let d = Day12::init(INPUT_1.to_string())?;
assert_eq!("10", d.part1()?);
Ok(())
}
#[test]
fn part1_test_2() -> anyhow::Result<()> {
let d = Day12::init(INPUT_2.to_string())?;
assert_eq!("19", d.part1()?);
Ok(())
}
#[test]
fn part1_test_3() -> anyhow::Result<()> {
let d = Day12::init(INPUT_3.to_string())?;
assert_eq!("226", d.part1()?);
Ok(())
}
#[test]
fn part1_real() -> anyhow::Result<()> {
let d = Day12::init(crate::load_input("12")?)?;
assert_eq!("4885", d.part1()?);
Ok(())
}
#[test]
fn part2_test_1() -> anyhow::Result<()> {
let d = Day12::init(INPUT_1.to_string())?;
assert_eq!("36", d.part2()?);
Ok(())
}
#[test]
fn part2_test_2() -> anyhow::Result<()> {
let d = Day12::init(INPUT_2.to_string())?;
assert_eq!("103", d.part2()?);
Ok(())
}
// These are very slow, so they are commented out.
#[test]
fn part2_test_3() -> anyhow::Result<()> {
let d = Day12::init(INPUT_3.to_string())?;
assert_eq!("3509", d.part2()?);
Ok(())
}
#[test]
fn part2_real() -> anyhow::Result<()> {
let d = Day12::init(crate::load_input("12")?)?;
assert_eq!("117095", d.part2()?);
Ok(())
}
}

View File

@ -14,6 +14,7 @@ use crate::day08::Day08;
use crate::day09::Day09;
use crate::day10::Day10;
use crate::day11::Day11;
use crate::day12::Day12;
mod day;
mod day01;
@ -27,6 +28,7 @@ mod day08;
mod day09;
mod day10;
mod day11;
mod day12;
fn load_input(day: &str) -> Result<String> {
read_to_string(format!("./input/day{}", day)).map_err(|x| x.into())
@ -72,7 +74,8 @@ fn main() -> anyhow::Result<()> {
Box::new(Day08::init(load_input("08")?)?),
Box::new(Day09::init(load_input("09")?)?),
Box::new(Day10::init(load_input("10")?)?),
Box::new(Day11::init(load_input("11")?)?),];
Box::new(Day11::init(load_input("11")?)?),
Box::new(Day12::init(load_input("12")?)?),];
let _verbosity = matches.occurrences_of("v");
if matches.is_present("all") {