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
//! # Cosmic Expansion
//!
//! We simplify the problem by treating each axis independently. Consider 4 galaxies on the same
//! axis at arbitrary non-decreasing values `a b c d`. The pairwise distances are:
//!
//! * `b - a`
//! * `c - b + c - a` => `2c - (a + b)`
//! * `d - c + d - b + d - a` => `3d - (a + b + c)`
//!
//! We can see that each pairwise distance can be expressed as the current coordinate multiplied by
//! the previous number of galaxies minus the [prefix sum](https://en.wikipedia.org/wiki/Prefix_sum)
//! of the coordinates of the previous galaxies.
//!
//! In the special case that two or more galaxies are at the same coordinate, for example `c == d`:
//!
//! * `c - b + c - a` => `2c - (a + b)`
//! * `d - c + d - b + d - a` => `3d - (a + b + c)` => `2c - (a + b)`
//! * Total: `2 * [2c - (a + b)]`
//!
//! This implies that we only need the *count* of the number of galaxies at each coordinate and
//! can multiply the total value by that count. This also find gaps with no galaxies to
//! calculate the expanded coordinates.
pub struct Input {
    xs: [usize; 140],
    ys: [usize; 140],
}

pub fn parse(input: &str) -> Input {
    let mut xs = [0; 140];
    let mut ys = [0; 140];

    for (y, row) in input.lines().enumerate() {
        for (x, b) in row.bytes().enumerate() {
            if b == b'#' {
                xs[x] += 1;
                ys[y] += 1;
            }
        }
    }

    Input { xs, ys }
}

pub fn part1(input: &Input) -> usize {
    axis(&input.xs, 1) + axis(&input.ys, 1)
}

pub fn part2(input: &Input) -> usize {
    axis(&input.xs, 999999) + axis(&input.ys, 999999)
}

fn axis(counts: &[usize], factor: usize) -> usize {
    let mut gaps = 0;
    let mut result = 0;
    let mut prefix_sum = 0;
    let mut prefix_items = 0;

    for (i, &count) in counts.iter().enumerate() {
        if count > 0 {
            let expanded = i + factor * gaps;
            let extra = prefix_items * expanded - prefix_sum;
            result += count * extra;
            prefix_sum += count * expanded;
            prefix_items += count;
        } else {
            gaps += 1;
        }
    }

    result
}