summary refs log tree commit diff homepage
path: root/2018/day17.c
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2018-12-21 14:57:36 -0500
committerJune McEnroe <june@causal.agency>2020-11-22 00:14:26 -0500
commit5d7469b73106d10526fd34298122b3faa58a8deb (patch)
tree36f5fe77a74e33dc2cf2576ef19ee1938b20b9dd /2018/day17.c
parentGeneralize day 19 solution (diff)
downloadaoc-5d7469b73106d10526fd34298122b3faa58a8deb.tar.gz
aoc-5d7469b73106d10526fd34298122b3faa58a8deb.zip
"Solve" day 17 part 1
Diffstat (limited to '2018/day17.c')
-rw-r--r--2018/day17.c87
1 files changed, 87 insertions, 0 deletions
diff --git a/2018/day17.c b/2018/day17.c
new file mode 100644
index 0000000..d2fd02c
--- /dev/null
+++ b/2018/day17.c
@@ -0,0 +1,87 @@
+#include <stdbool.h>
+#include <stdio.h>
+#include <stdlib.h>
+#include <string.h>
+
+typedef unsigned uint;
+
+static char map[2048][2048];
+
+static void draw(void) {
+	for (uint y = 0; y < 14; ++y) {
+		for (uint x = 494; x < 508; ++x) {
+			printf("%c", map[y][x]);
+		}
+		printf("\n");
+	}
+	printf("\n");
+}
+
+int main(void) {
+	memset(map, '.', sizeof(map));
+	uint minY = 2048, maxY = 0;
+	while (!feof(stdin)) {
+		char a, b;
+		uint fixed, start, end;
+		scanf("%c=%u, %c=%u..%u\n", &a, &fixed, &b, &start, &end);
+		for (uint i = start; i <= end; ++i) {
+			if (a == 'y') {
+				map[fixed][i] = '#';
+			} else {
+				map[i][fixed] = '#';
+			}
+		}
+		if (a == 'y') {
+			if (fixed < minY) minY = fixed;
+			if (fixed > maxY) maxY = fixed;
+		} else {
+			if (start < minY) minY = start;
+			if (end > maxY) maxY = end;
+		}
+	}
+	map[0][500] = '|';
+
+	bool hot;
+	do {
+		hot = false;
+		for (uint y = 0; y < 2047; ++y) {
+			for (uint x = 0; x < 2048; ++x) {
+				char *self = &map[y][x];
+				char *below = &map[y + 1][x];
+				char *left = &map[y][x - 1];
+				char *right = &map[y][x + 1];
+				if (*self != '|' && *self != '*') continue;
+				if (*below == '.') {
+					*below = '|';
+					hot = true;
+				}
+				if (*below != '#' && *below != '~') continue;
+				if (*left == '.') {
+					*left = '|';
+					hot = true;
+				}
+				if (*right == '.') {
+					*right = '|';
+					hot = true;
+				}
+				if (*self == '|' && (*left == '#' || *left == '*')) {
+					*self = '*';
+					hot = true;
+				}
+				if (*self == '*' && (*right == '#' || *right == '~')) {
+					*self = '~';
+					hot = true;
+				}
+			}
+		}
+	} while (hot);
+	draw();
+
+	uint count = 0;
+	for (uint y = minY; y <= maxY; ++y) {
+		for (uint x = 0; x < 2048; ++x) {
+			if (map[y][x] != '.' && map[y][x] != '#') count++;
+		}
+	}
+	printf("%u\n", count);
+}