summaryrefslogtreecommitdiffstats
path: root/src/2021/20/mod.rs
blob: a46acab9a21b7cf915ab7c78d5492412664f405b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
use crate::util::grid::*;

pub struct Image {
    algorithm: Vec<bool>,
    map: Grid<bool>,
    outer: bool,
}

impl Image {
    fn new(algorithm: Vec<bool>, map: Grid<bool>) -> Self {
        Self {
            algorithm,
            map,
            outer: false,
        }
    }

    fn enhance(&mut self) {
        let mut new_map: Grid<bool> = Grid::default();
        new_map.grow(self.map.rows() + 2, self.map.cols() + 2);
        for row in 0..new_map.rows().0 {
            for col in 0..new_map.cols().0 {
                let neighbors: &[(Option<usize>, Option<usize>)] = &[
                    (row.checked_sub(2), col.checked_sub(2)),
                    (row.checked_sub(2), col.checked_sub(1)),
                    (row.checked_sub(2), Some(col)),
                    (row.checked_sub(1), col.checked_sub(2)),
                    (row.checked_sub(1), col.checked_sub(1)),
                    (row.checked_sub(1), Some(col)),
                    (Some(row), col.checked_sub(2)),
                    (Some(row), col.checked_sub(1)),
                    (Some(row), Some(col)),
                ];
                let neighbors = neighbors.iter().map(|neighbor| {
                    if let (Some(row), Some(col)) = neighbor {
                        self.map
                            .get(Row(*row))
                            .and_then(|row| row.get(Col(*col)).copied())
                            .unwrap_or(self.outer)
                    } else {
                        self.outer
                    }
                });
                let mut idx = 0;
                for neighbor in neighbors {
                    idx = idx * 2 + if neighbor { 1 } else { 0 };
                }
                new_map[Row(row)][Col(col)] = self.algorithm[idx]
            }
        }
        self.map = new_map;
        if self.outer {
            self.outer = self.algorithm[511];
        } else {
            self.outer = self.algorithm[0];
        }
    }

    fn count_true(&self) -> i64 {
        if self.outer {
            panic!("infinite");
        }
        self.map.cells().filter(|c| **c).count().try_into().unwrap()
    }
}

pub fn parse(fh: std::fs::File) -> anyhow::Result<Image> {
    let mut lines = crate::util::parse::lines(fh);
    let algorithm = lines.next().unwrap();
    let algorithm: Vec<_> = algorithm
        .as_bytes()
        .iter()
        .map(|b| match b {
            b'#' => true,
            b'.' => false,
            _ => panic!("bad algorithm"),
        })
        .collect();
    lines.next().unwrap();
    let map = crate::util::parse::bool_grid(lines, b'#', b'.');
    Ok(Image::new(algorithm, map))
}

pub fn part1(mut image: Image) -> anyhow::Result<i64> {
    for _ in 0..2 {
        image.enhance();
    }
    Ok(image.count_true())
}

pub fn part2(mut image: Image) -> anyhow::Result<i64> {
    for _ in 0..50 {
        image.enhance();
    }
    Ok(image.count_true())
}