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 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318
//! # [Day 9: Stream Processing](http://adventofcode.com/2017/day/9) //! //! A large stream blocks your path. According to the locals, it's not safe //! to <span title=""Don't cross the streams!", they yell, even though //! there's only one. They seem to think they're hilarious.">cross the //! stream</span> at the moment because it's full of *garbage*. You look //! down at the stream; rather than water, you discover that it's a *stream //! of characters*. use nom::anychar; /// You sit for a while and record part of the stream (your puzzle input). /// The characters represent *groups* - sequences that begin with `{` and /// end with `}`. Within a group, there are zero or more other things, /// separated by commas: either another *group* or *garbage*. Since groups /// can contain other groups, a `}` only closes the *most-recently-opened /// unclosed group* - that is, they are nestable. Your puzzle input /// represents a single, large group which itself contains many smaller /// ones. /// /// Sometimes, instead of a group, you will find *garbage*. Garbage begins /// with `<` and ends with `>`. Between those angle brackets, almost any /// character can appear, including `{` and `}`. *Within* garbage, `<` has /// no special meaning. /// /// In a futile attempt to clean up the garbage, some program has *canceled* /// some of the characters within it using `!`: inside garbage, *any* /// character that comes after `!` should be *ignored*, including `<`, `>`, /// and even another `!`. /// /// You don't see any characters that deviate from these rules. Outside /// garbage, you only find well-formed groups, and garbage always terminates /// according to the rules above. /// /// Here are some self-contained pieces of garbage: /// /// - `<>`, empty garbage. /// - `<random characters>`, garbage containing random characters. /// - `<<<<>`, because the extra `<` are ignored. /// - `<{!>}>`, because the first `>` is canceled. /// - `<!!>`, because the second `!` is canceled, allowing the `>` to /// terminate the garbage. /// - `<!!!>>`, because the second `!` and the first `>` are canceled. /// - `<{o"i!a,<{i<a>`, which ends at the first `>`. /// /// Here are some examples of whole streams and the number of groups they /// contain: /// /// - `{}`, `1` group. /// - `{{{}}}`, `3` groups. /// - `{{},{}}`, also `3` groups. /// - `{{{},{},{{}}}}`, `6` groups. /// - `{<{},{},{{}}>}`, `1` group (which itself contains garbage). /// - `{<a>,<a>,<a>,<a>}`, `1` group. /// - `{{<a>},{<a>},{<a>},{<a>}}`, `5` groups. /// - `{{<!>},{<!>},{<!>},{<a>}}`, `2` groups (since all but the last `>` /// are canceled). #[derive(Clone, PartialEq, Eq, Debug, Hash)] pub enum Node { Group(Vec<Node>), Garbage(usize), } use self::Node::*; named!{ parse_garbage_char (&[u8]) -> usize, alt!( do_parse!(char!('!') >> anychar >> (0)) | //do_parse!(not!(char!('>')) >> (1)) do_parse!(verify!(anychar, |c| c != '>') >> (1)) ) } impl Node { pub fn score(&self, level: usize) -> usize { match *self { Group(ref children) => level + children.iter() .map(|node| node.score(level + 1)) .sum::<usize>(), Garbage(_) => 0, } } pub fn count_garbage(&self) -> usize { match *self { Group(ref children) => children.iter() .map(|node| node.count_garbage()) .sum::<usize>(), Garbage(length) => length, } } named!{ group_from_bytes (&[u8]) -> Node, do_parse!( char!('{') >> children: separated_list!(char!(','), Node::from_bytes) >> char!('}') >> (Node::Group(children)) ) } named!{ garbage_from_bytes (&[u8]) -> Node, delimited!( char!('<'), map!( many0!(parse_garbage_char), |vec| Node::Garbage(vec.iter().sum::<usize>()) ), char!('>') ) } named!{ pub from_bytes (&[u8]) -> Node, alt!(call!(Node::group_from_bytes) | call!(Node::garbage_from_bytes)) } } /// Your goal is to find the total score for all groups in your input. Each /// group is assigned a *score* which is one more than the score of the /// group that immediately contains it. (The outermost group gets a score of /// `1`.) /// /// - `{}`, score of `1`. /// /// ``` /// # use advent_solutions::advent2017::day09::{ Node, part1 }; /// let root = Node::from_bytes(b"{}") /// .to_result() /// .unwrap(); /// /// assert_eq!(part1(&root), 1); /// ``` /// /// - `{{{}}}`, score of `1 + 2 + 3 = 6`. /// /// ``` /// # use advent_solutions::advent2017::day09::{ Node, part1 }; /// let root = Node::from_bytes(b"{{{}}}") /// .to_result() /// .unwrap(); /// /// assert_eq!(part1(&root), 6); /// ``` /// /// - `{{},{}}`, score of `1 + 2 + 2 = 5`. /// /// ``` /// # use advent_solutions::advent2017::day09::{ Node, part1 }; /// let root = Node::from_bytes(b"{{},{}}") /// .to_result() /// .unwrap(); /// /// assert_eq!(part1(&root), 5); /// ``` /// /// - `{{{},{},{{}}}}`, score of `1 + 2 + 3 + 3 + 3 + 4 = 16`. /// /// ``` /// # use advent_solutions::advent2017::day09::{ Node, part1 }; /// let root = Node::from_bytes(b"{{{},{},{{}}}}") /// .to_result() /// .unwrap(); /// /// assert_eq!(part1(&root), 16); /// ``` /// /// - `{<a>,<a>,<a>,<a>}`, score of `1`. /// /// ``` /// # use advent_solutions::advent2017::day09::{ Node, part1 }; /// let root = Node::from_bytes(b"{<a>,<a>,<a>,<a>}") /// .to_result() /// .unwrap(); /// /// assert_eq!(part1(&root), 1); /// ``` /// /// - `{{<ab>},{<ab>},{<ab>},{<ab>}}`, score of `1 + 2 + 2 + 2 + 2 = 9`. /// /// ``` /// # use advent_solutions::advent2017::day09::{ Node, part1 }; /// let root = Node::from_bytes(b"{{<ab>},{<ab>},{<ab>},{<ab>}}") /// .to_result() /// .unwrap(); /// /// assert_eq!(part1(&root), 9); /// ``` /// /// - `{{<!!>},{<!!>},{<!!>},{<!!>}}`, score of `1 + 2 + 2 + 2 + 2 = 9`. /// /// ``` /// # use advent_solutions::advent2017::day09::{ Node, part1 }; /// let root = Node::from_bytes(b"{{<!!>},{<!!>},{<!!>},{<!!>}}") /// .to_result() /// .unwrap(); /// /// assert_eq!(part1(&root), 9); /// ``` /// /// - `{{<a!>},{<a!>},{<a!>},{<ab>}}`, score of `1 + 2 = 3`. /// /// ``` /// # use advent_solutions::advent2017::day09::{ Node, part1 }; /// let root = Node::from_bytes(b"{{<a!>},{<a!>},{<a!>},{<ab>}}") /// .to_result() /// .unwrap(); /// /// assert_eq!(part1(&root), 3); /// ``` /// /// *What is the total score* for all groups in your input? pub fn part1(root: &Node) -> usize { if let &Node::Group(_) = root { root.score(1) } else { panic!("Unexpected garbage root node") } } /// Now, you're ready to remove the garbage. /// /// To prove you've removed it, you need to count all of the characters /// within the garbage. The leading and trailing `<` and `>` don't count, /// nor do any canceled characters or the `!` doing the canceling. /// /// - `<>`, `0` characters. /// /// ``` /// # use advent_solutions::advent2017::day09::{ Node, part2 }; /// let root = Node::from_bytes(b"<>") /// .to_result() /// .unwrap(); /// /// assert_eq!(part2(&root), 0); /// ``` /// /// - `<random characters>`, `17` characters. /// /// ``` /// # use advent_solutions::advent2017::day09::{ Node, part2 }; /// let root = Node::from_bytes(b"<random characters>") /// .to_result() /// .unwrap(); /// /// assert_eq!(part2(&root), 17); /// ``` /// /// - `<<<<>`, `3` characters. /// /// ``` /// # use advent_solutions::advent2017::day09::{ Node, part2 }; /// let root = Node::from_bytes(b"<<<<>") /// .to_result() /// .unwrap(); /// /// assert_eq!(part2(&root), 3); /// ``` /// /// - `<{!>}>`, `2` characters. /// /// ``` /// # use advent_solutions::advent2017::day09::{ Node, part2 }; /// let root = Node::from_bytes(b"<{!>}>") /// .to_result() /// .unwrap(); /// /// assert_eq!(part2(&root), 2); /// ``` /// /// - `<!!>`, `0` characters. /// /// ``` /// # use advent_solutions::advent2017::day09::{ Node, part2 }; /// let root = Node::from_bytes(b"<!!>") /// .to_result() /// .unwrap(); /// /// assert_eq!(part2(&root), 0); /// ``` /// /// - `<!!!>>`, `0` characters. /// /// ``` /// # use advent_solutions::advent2017::day09::{ Node, part2 }; /// let root = Node::from_bytes(b"<!!!>>") /// .to_result() /// .unwrap(); /// /// assert_eq!(part2(&root), 0); /// ``` /// /// - `<{o"i!a,<{i<a>`, `10` characters. /// /// ``` /// # use advent_solutions::advent2017::day09::{ Node, part2 }; /// let root = Node::from_bytes(b"<{o\"i!a,<{i<a>") /// .to_result() /// .unwrap(); /// /// assert_eq!(part2(&root), 10); /// ``` /// /// *How many non-canceled characters are within the garbage* in your puzzle /// input? pub fn part2(root: &Node) -> usize { root.count_garbage() } pub fn parse_input(input: &str) -> Node { Node::from_bytes(input.as_bytes()) .to_full_result() .expect("Error parsing stream") } test_day!("09", 14204, 6622);