summary refs log tree commit diff homepage
path: root/2017/src/bin/day09.rs
blob: e88b6f40578bfb03d773e1de592d87a1885ad618 (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
use std::io::{self, Read};

#[derive(Debug, Clone, Copy, PartialEq, Eq)]
enum State {
    Group,
    Garbage,
    Ignore,
}

use self::State::*;

#[derive(Debug, Clone, Copy, PartialEq, Eq)]
struct Machine(State, u32);

impl Machine {
    fn next(self, input: char) -> Self {
        match (self.0, input) {
            (Ignore, _) => Machine(Garbage, self.1),
            (Garbage, '!') => Machine(Ignore, self.1),
            (Garbage, '>') => Machine(Group, self.1),
            (Garbage, _) => self,
            (Group, '<') => Machine(Garbage, self.1),
            (Group, '{') => Machine(Group, self.1 + 1),
            (Group, '}') => Machine(Group, self.1 - 1),
            (Group, ',') => self,
            _ => unimplemented!(),
        }
    }
}

fn solve1(input: &str) -> u32 {
    let mut score = 0;
    let mut state = Machine(Group, 0);
    for c in input.chars() {
        let next = state.next(c);
        if next.1 > state.1 {
            score += next.1;
        }
        state = next;
    }
    score
}

fn solve2(input: &str) -> u32 {
    let mut garbage = 0;
    let mut state = Machine(Group, 0);
    for c in input.chars() {
        let next = state.next(c);
        if next == state && state.0 == Garbage {
            garbage += 1;
        }
        state = next;
    }
    garbage
}

fn main() {
    let mut input = String::new();
    io::stdin().read_to_string(&mut input).unwrap();

    println!("Part 1: {}", solve1(input.trim()));
    println!("Part 2: {}", solve2(input.trim()));
}

#[test]
fn part1() {
    assert_eq!(1, solve1("{}"));
    assert_eq!(6, solve1("{{{}}}"));
    assert_eq!(5, solve1("{{},{}}"));
    assert_eq!(16, solve1("{{{},{},{{}}}}"));
    assert_eq!(1, solve1("{<a>,<a>,<a>,<a>}"));
    assert_eq!(9, solve1("{{<ab>},{<ab>},{<ab>},{<ab>}}"));
    assert_eq!(9, solve1("{{<!!>},{<!!>},{<!!>},{<!!>}}"));
    assert_eq!(3, solve1("{{<a!>},{<a!>},{<a!>},{<ab>}}"));
}

#[test]
fn part2() {
    assert_eq!(0, solve2("<>"));
    assert_eq!(17, solve2("<random characters>"));
    assert_eq!(3, solve2("<<<<>"));
    assert_eq!(2, solve2("<{!>}>"));
    assert_eq!(0, solve2("<!!>"));
    assert_eq!(0, solve2("<!!!>>"));
    assert_eq!(10, solve2("<{o\"i!a,<{i<a>"));
}
23:04 -0500'>2020-02-11Rename query ID on nick changeJune McEnroe 2020-02-11Call completeClear when closing a windowJune McEnroe 2020-02-11Don't insert color codes for non-mentionsJune McEnroe 2020-02-11Take first two words in colorMentionsJune McEnroe This lets phrases like "hi june" get colored, but still doesn't get carried away. 2020-02-11Use time_t for save signatureJune McEnroe It's actually more likely to be 64-bit than size_t anyway, and it eliminates some helper functions. Also don't error when reading an empty save file. 2020-02-11Set self.nick to * initiallyJune McEnroe Allows removing a bunch of checks that self.nick is set, and it's what the server usually calls you before registration. Never highlight notices as mentions. 2020-02-11Define ColorCap instead of hardcoding 100June McEnroe 2020-02-11Move hash to top of chat.hJune McEnroe 2020-02-11Move base64 out of chat.hJune McEnroe 2020-02-11Move XDG_SUBDIR out of chat.hJune McEnroe 2020-02-11Fix whois idle unit calculationJune McEnroe Rookie mistake. 2020-02-11Cast towupper to wchar_tJune McEnroe For some reason it takes and returns wint_t... 2020-02-11Cast set but unused variables to voidJune McEnroe 2020-02-11Declare strlcatJune McEnroe 2020-02-11Check if VDSUSP existsJune McEnroe 2020-02-11Fix completeReplace iterationJune McEnroe 2020-02-11Use pkg(8) to configure on FreeBSDJune McEnroe 2020-02-11Remove legacy codeJune McEnroe 2020-02-11Add INSTALLING section to READMEJune McEnroe