-
Notifications
You must be signed in to change notification settings - Fork 3
/
day_04.rs
93 lines (75 loc) · 2.14 KB
/
day_04.rs
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
use common::{Answer, Solution};
pub struct Day04;
impl Solution for Day04 {
fn name(&self) -> &'static str {
"Scratchcards"
}
fn part_a(&self, input: &str) -> Answer {
let cards = parse(input);
cards
.iter()
.filter(|x| x.wins > 0)
.map(|x| 2u32.pow(x.wins.saturating_sub(1) as u32))
.sum::<u32>()
.into()
}
fn part_b(&self, input: &str) -> Answer {
let cards = parse(input);
let mut queue = (0..cards.len()).collect::<Vec<_>>();
let mut visited = 0;
while let Some(i) = queue.pop() {
visited += 1;
let card = &cards[i];
if card.wins == 0 {
continue;
}
for j in 0..card.wins as usize {
queue.push(j + i + 1);
}
}
visited.into()
}
}
struct Card {
wins: u8,
}
fn parse(input: &str) -> Vec<Card> {
let mut cards = Vec::new();
for line in input.lines() {
let (_, line) = line.split_once(": ").unwrap();
let (winning, scratch) = line.split_once(" | ").unwrap();
let parse = |s: &str| {
s.split_whitespace()
.map(|x| x.parse().unwrap())
.collect::<Vec<u8>>()
};
let winning = parse(winning);
let scratch = parse(scratch);
cards.push(Card {
wins: scratch.iter().filter(|x| winning.contains(x)).count() as u8,
});
}
cards
}
#[cfg(test)]
mod test {
use common::Solution;
use indoc::indoc;
use super::Day04;
const CASE: &str = indoc! {"
Card 1: 41 48 83 86 17 | 83 86 6 31 17 9 48 53
Card 2: 13 32 20 16 61 | 61 30 68 82 17 32 24 19
Card 3: 1 21 53 59 44 | 69 82 63 72 16 21 14 1
Card 4: 41 92 73 84 69 | 59 84 76 51 58 5 54 83
Card 5: 87 83 26 28 32 | 88 30 70 12 93 22 82 36
Card 6: 31 18 13 56 72 | 74 77 10 23 35 67 36 11
"};
#[test]
fn part_a() {
assert_eq!(Day04.part_a(CASE), 13.into());
}
#[test]
fn part_b() {
assert_eq!(Day04.part_b(CASE), 30.into());
}
}