summaryrefslogtreecommitdiffstats
path: root/src/2021/17/mod.rs
blob: 2bc54fc576dd9c9137c08f7c6da7a8de3cc10a79 (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
97
98
99
100
101
102
103
104
105
use crate::prelude::*;

fn fire(
    mut xv: i64,
    mut yv: i64,
    xrange: &std::ops::RangeInclusive<i64>,
    yrange: &std::ops::RangeInclusive<i64>,
) -> Option<i64> {
    let mut xpos = 0;
    let mut ypos = 0;
    let mut max_height = 0;
    loop {
        if xrange.contains(&xpos) && yrange.contains(&ypos) {
            return Some(max_height);
        } else if (xv >= 0 && xpos > *xrange.end())
            || (xv <= 0 && xpos < *xrange.start())
            || (ypos < *yrange.start())
        {
            return None;
        }

        xpos += xv;
        ypos += yv;
        if ypos > max_height {
            max_height = ypos;
        }
        match xv.cmp(&0) {
            Ordering::Greater => {
                xv -= 1;
            }
            Ordering::Less => {
                xv += 1;
            }
            _ => {}
        }
        yv -= 1;
    }
}

pub fn parse(
    fh: File,
) -> Result<(std::ops::RangeInclusive<i64>, std::ops::RangeInclusive<i64>)> {
    let rx =
        Regex::new(r"target area: x=(-?\d+)..(-?\d+), y=(-?\d+)..(-?\d+)")
            .unwrap();
    let line = parse::lines(fh).next().unwrap();
    let captures = rx.captures(&line).unwrap();
    let xrange: std::ops::RangeInclusive<i64> =
        captures[1].parse().unwrap()..=captures[2].parse().unwrap();
    let yrange: std::ops::RangeInclusive<i64> =
        captures[3].parse().unwrap()..=captures[4].parse().unwrap();
    Ok((xrange, yrange))
}

pub fn part1(
    (xrange, yrange): (
        std::ops::RangeInclusive<i64>,
        std::ops::RangeInclusive<i64>,
    ),
) -> Result<i64> {
    let mut max_height = 0;
    for xv in *xrange.start().min(&0)..=*xrange.end().max(&0) {
        for yv in *yrange.start().min(&0)
            ..=yrange.start().abs().max(yrange.end().abs())
        {
            if let Some(height) = fire(xv, yv, &xrange, &yrange) {
                if height > max_height {
                    max_height = height;
                }
            }
        }
    }
    Ok(max_height)
}

pub fn part2(
    (xrange, yrange): (
        std::ops::RangeInclusive<i64>,
        std::ops::RangeInclusive<i64>,
    ),
) -> Result<i64> {
    let mut count = 0;
    for xv in *xrange.start().min(&0)..=*xrange.end().max(&0) {
        for yv in *yrange.start().min(&0)
            ..=yrange.start().abs().max(yrange.end().abs())
        {
            if fire(xv, yv, &xrange, &yrange).is_some() {
                count += 1;
            }
        }
    }
    Ok(count)
}

#[test]
fn test() {
    assert_eq!(
        part1(parse(parse::data(2021, 17).unwrap()).unwrap()).unwrap(),
        5886
    );
    assert_eq!(
        part2(parse(parse::data(2021, 17).unwrap()).unwrap()).unwrap(),
        1806
    );
}