-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathday6.rs
87 lines (75 loc) · 2.53 KB
/
day6.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
// vi: set shiftwidth=4 tabstop=4 expandtab:
use common::input::check_answer;
use common::input::get_answers;
use common::input::get_first_line_from_file;
use std::time::Instant;
const INPUT_FILEPATH: &str = "../resources/year2021_day6_input.txt";
const ANSWERS_FILEPATH: &str = "../resources/year2021_day6_answer.txt";
type Int = usize;
fn get_input_from_str(string: &str) -> Vec<Int> {
string
.split(',')
.map(|s| s.parse::<Int>().unwrap())
.collect()
}
fn get_generation_count(fishes: &Vec<Int>, nb_generation: Int) -> Int {
let mut count = vec![0; 9];
for f in fishes {
count[*f] += 1;
}
for _ in 0..nb_generation {
// Shift every generation
let val = count.remove(0);
// Add new generations
count[6] += val;
count.push(val);
}
count.iter().sum()
}
fn part1(fishes: &Vec<Int>) -> Int {
get_generation_count(fishes, 80)
}
fn part2(fishes: &Vec<Int>) -> Int {
get_generation_count(fishes, 256)
}
fn main() {
let before = Instant::now();
let data = get_input_from_str(&get_first_line_from_file(INPUT_FILEPATH));
let (ans, ans2) = get_answers(ANSWERS_FILEPATH);
let solved = true;
let res = part1(&data);
check_answer(&res.to_string(), ans, solved);
let res2 = part2(&data);
check_answer(&res2.to_string(), ans2, solved);
println!("Elapsed time: {:.2?}", before.elapsed());
}
#[cfg(test)]
mod tests {
use super::*;
const EXAMPLE: &str = "3,4,3,1,2";
#[test]
fn test_generation_count() {
let input = get_input_from_str(EXAMPLE);
assert_eq!(get_generation_count(&input, 0), 5);
assert_eq!(get_generation_count(&input, 1), 5);
assert_eq!(get_generation_count(&input, 2), 6);
assert_eq!(get_generation_count(&input, 3), 7);
assert_eq!(get_generation_count(&input, 4), 9);
assert_eq!(get_generation_count(&input, 5), 10);
assert_eq!(get_generation_count(&input, 6), 10);
assert_eq!(get_generation_count(&input, 7), 10);
assert_eq!(get_generation_count(&input, 8), 10);
assert_eq!(get_generation_count(&input, 8), 10);
assert_eq!(get_generation_count(&input, 18), 26);
assert_eq!(get_generation_count(&input, 80), 5934);
assert_eq!(get_generation_count(&input, 256), 26_984_457_539);
}
#[test]
fn test_part1() {
assert_eq!(part1(&get_input_from_str(EXAMPLE)), 5934);
}
#[test]
fn test_part2() {
assert_eq!(part2(&get_input_from_str(EXAMPLE)), 26_984_457_539);
}
}