diff options
author | Marvin Borner | 2021-12-11 16:48:12 +0100 |
---|---|---|
committer | Marvin Borner | 2021-12-11 16:48:12 +0100 |
commit | a46a5cf547127ade88ce9ced2cc459086f770d07 (patch) | |
tree | 2eb1aeaab078959d2d814aa5f2355cb418b60e1e /2021/11 | |
parent | f27e912d003742cbeee276029b1d4ff03d2725fb (diff) |
Mostly works
Diffstat (limited to '2021/11')
-rw-r--r-- | 2021/11/Makefile | 19 | ||||
-rw-r--r-- | 2021/11/input | 10 | ||||
-rw-r--r-- | 2021/11/solve.c | 145 |
3 files changed, 174 insertions, 0 deletions
diff --git a/2021/11/Makefile b/2021/11/Makefile new file mode 100644 index 0000000..34bab3b --- /dev/null +++ b/2021/11/Makefile @@ -0,0 +1,19 @@ +DEBUG = -Wno-error -Og -g -s -fsanitize=undefined -fsanitize=address -fstack-protector-all +CFLAGS = -Wall -Wextra -Wno-error -Wshadow -Wpointer-arith -Wwrite-strings -Wredundant-decls -Wnested-externs -Wformat=2 -Wmissing-declarations -Wstrict-prototypes -Wmissing-prototypes -Wcast-qual -Wswitch-default -Wswitch-enum -Wunreachable-code -Wundef -Wold-style-definition -Wvla -pedantic-errors -Ofast + +# Not the best makefile but idc + +debug: + @gcc $(CFLAGS) $(DEBUG) solve.c -o solve.o -L/usr/lib -lcrypto + +build: + @gcc $(CFLAGS) solve.c -o solve.o -L/usr/lib -lcrypto + +clean: + @rm -f *.o + +run: debug + @./solve.o + +time: build + @./solve.o diff --git a/2021/11/input b/2021/11/input new file mode 100644 index 0000000..378eb6b --- /dev/null +++ b/2021/11/input @@ -0,0 +1,10 @@ +2478668324 +4283474125 +1663463374 +1738271323 +4285744861 +3551311515 +8574335438 +7843525826 +1366237577 +3554687226 diff --git a/2021/11/solve.c b/2021/11/solve.c new file mode 100644 index 0000000..9cd5041 --- /dev/null +++ b/2021/11/solve.c @@ -0,0 +1,145 @@ +#include <stdio.h> +#include <stdlib.h> +#include <time.h> + +#define ABS(a) ((a) < 0 ? -(a) : (a)) +#define MIN(a, b) (((a) < (b)) ? (a) : (b)) +#define MAX(a, b) (((a) > (b)) ? (a) : (b)) +#define COUNT(a) ((int)(sizeof(a) / sizeof 0 [a])) + +#define FORLINE \ + char *line = NULL; \ + size_t len = 0; \ + while (getline(&line, &len, fp) != EOF) +#define FREELINE \ + if (line) \ + free(line) + +#define FORCH \ + char ch = 0; \ + while ((ch = fgetc(fp)) != EOF) + +#define WHOLE \ + fseek(fp, 0, SEEK_END); \ + long fsize = ftell(fp); \ + fseek(fp, 0, SEEK_SET); \ + char *data = malloc(fsize + 1); \ + fread(data, 1, fsize, fp); + +#define SIZE 10 +#define LINE (SIZE + 1) +#define BEYOND 42 +#define JUSTFLASHED 33 +#define INC(x, y) \ + if ((x) >= 0 && (x) < SIZE && (y) >= 0 && (y) < SIZE) { \ + if (data[(y)*LINE + (x)] == '9') { \ + data[(y)*LINE + (x)] = BEYOND; \ + } else if (data[(y)*LINE + (x)] >= '0') { \ + inc++; \ + data[(y)*LINE + (x)]++; \ + } \ + } + +static int flash(char *data, int cnt) +{ + int inc = 0; + for (int y = 0; y < SIZE; y++) { + for (int x = 0; x < SIZE; x++) { + if (data[y * LINE + x] == BEYOND) { + cnt++; + INC(x - 1, y - 1); + INC(x + 0, y - 1); + INC(x + 1, y - 1); + INC(x - 1, y + 0); + INC(x + 1, y + 0); + INC(x - 1, y + 1); + INC(x + 0, y + 1); + INC(x + 1, y + 1); + data[y * LINE + x] = JUSTFLASHED; + } + } + } + if (inc > 0) + return cnt + flash(data, 0); + return 0; +} + +void print(char *data) +{ + for (int y = 0; y < SIZE; y++) { + for (int x = 0; x < SIZE; x++) + if (data[y * LINE + x] == BEYOND) + printf(" "); + else if (data[y * LINE + x] == JUSTFLASHED) + printf("█"); + else + printf("%c", data[y * LINE + x]); + printf("\n"); + } +} + +static int part_one(FILE *fp) +{ + int res = 0; + + WHOLE; + + int inc = 0; + for (int i = 0; i < 101; i++) { + for (int y = 0; y < SIZE; y++) + for (int x = 0; x < SIZE; x++) + INC(x, y); + res += flash(data, 0); + for (int y = 0; y < SIZE; y++) + for (int x = 0; x < SIZE; x++) + if (data[y * LINE + x] == JUSTFLASHED) + data[y * LINE + x] = '0'; + } + + free(data); + + return res + 2; +} + +static int part_two(FILE *fp) +{ + int res = 0; + + WHOLE; + + int inc = 0, cnt = 0; + for (res = 0; cnt != SIZE * SIZE - 1; res++) { + for (int y = 0; y < SIZE; y++) + for (int x = 0; x < SIZE; x++) + INC(x, y); + cnt = flash(data, 0); + for (int y = 0; y < SIZE; y++) + for (int x = 0; x < SIZE; x++) + if (data[y * LINE + x] == JUSTFLASHED) + data[y * LINE + x] = '0'; + } + + free(data); + + return res; +} + +int main(int argc, char *argv[]) +{ + (void)argc; + (void)argv; + + FILE *fp = fopen("input", "r"); + if (!fp) + exit(EXIT_FAILURE); + + clock_t tic = clock(); + printf("%d\n", part_one(fp)); + rewind(fp); + printf("%d\n", part_two(fp)); + clock_t toc = clock(); + printf("TIME: %f seconds\n", (double)(toc - tic) / CLOCKS_PER_SEC); + + fclose(fp); + return 0; +} |