diff options
author | June McEnroe <june@causal.agency> | 2018-12-23 12:46:17 -0500 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2018-12-23 12:46:17 -0500 |
commit | 646467da4d6e5db9173c6c9b6c5dc9a040498941 (patch) | |
tree | b5cea410722f8feef4966c040c5769d154fe7a17 /2018/day23.c | |
parent | Solve day 22 part 1 (diff) | |
download | aoc-646467da4d6e5db9173c6c9b6c5dc9a040498941.tar.gz aoc-646467da4d6e5db9173c6c9b6c5dc9a040498941.zip |
Solve day 23 part 1
Diffstat (limited to '')
-rw-r--r-- | 2018/day23.c | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/2018/day23.c b/2018/day23.c new file mode 100644 index 0000000..dca2a0b --- /dev/null +++ b/2018/day23.c @@ -0,0 +1,47 @@ +#include <stdio.h> +#include <stdlib.h> + +typedef unsigned uint; + +struct Point { + int x, y, z; +}; + +static int distance(struct Point a, struct Point b) { + int x = (a.x > b.x ? a.x - b.x : b.x - a.x); + int y = (a.y > b.y ? a.y - b.y : b.y - a.y); + int z = (a.z > b.z ? a.z - b.z : b.z - a.z); + return x + y + z; +} + +struct Bot { + struct Point pos; + int radius; +}; + +int main(void) { + uint len = 0; + struct Bot bots[1000]; + while (!feof(stdin)) { + scanf( + "pos=<%d,%d,%d>, r=%d\n", + &bots[len].pos.x, &bots[len].pos.y, &bots[len].pos.z, + &bots[len].radius + ); + len++; + } + + uint max, maxRadius = 0; + for (uint i = 0; i < len; ++i) { + if (bots[i].radius < maxRadius) continue; + max = i; + maxRadius = bots[i].radius; + } + + uint inRange = 0; + for (uint i = 0; i < len; ++i) { + if (distance(bots[i].pos, bots[max].pos) > bots[max].radius) continue; + inRange++; + } + printf("%u\n", inRange); +} |