-
Notifications
You must be signed in to change notification settings - Fork 15
/
day07.rs
46 lines (38 loc) · 1.45 KB
/
day07.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
//! # The Treachery of Whales
//!
//! Part 1 is a disguised definition of the mathematical [median](https://en.wikipedia.org/wiki/Median).
//! We can calculate the result immediately using the standard algorithm.
//!
//! Part 2 is found by using the [mean](https://en.wikipedia.org/wiki/Mean).
//! However since this could a floating point value and we are using integers we need to check
//! 3 values total, the rounded result and one value on either side to ensure the correct answer.
use crate::util::parse::*;
pub fn parse(input: &str) -> Vec<i32> {
input.iter_signed().collect()
}
pub fn part1(input: &[i32]) -> i32 {
let median = median(input);
input.iter().map(|n| (n - median).abs()).sum()
}
pub fn part2(input: &[i32]) -> i32 {
let mean = mean(input);
let triangle = |x: i32, mean: i32| {
let n = (x - mean).abs();
(n * (n + 1)) / 2
};
let first: i32 = input.iter().map(|&x| triangle(x, mean)).sum();
let second: i32 = input.iter().map(|&x| triangle(x, mean + 1)).sum();
let third: i32 = input.iter().map(|&x| triangle(x, mean - 1)).sum();
first.min(second).min(third)
}
fn median(input: &[i32]) -> i32 {
let mut crabs = input.to_vec();
crabs.sort_unstable();
let half = input.len() / 2;
let odd = crabs.len() % 2 == 1;
if odd { crabs[half] } else { (crabs[half - 1] + crabs[half]) / 2 }
}
fn mean(input: &[i32]) -> i32 {
let sum: i32 = input.iter().sum();
sum / (input.len() as i32)
}