-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaoc17.c
147 lines (138 loc) · 4.79 KB
/
aoc17.c
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <stdint.h>
#include <stdbool.h>
#include <ctype.h>
typedef struct {
int x, y, z;
} dir_t;
typedef struct {
int x ,y, z, w;
} dir4_t;
dir_t dir[26];
dir4_t dir4d[80];
void calcDir() {
dir_t *d3 = dir;
dir4_t *d4 = dir4d;
for (int w = -1; w < 2; w++) {
for (int z = -1; z < 2; z++) {
for (int y = -1; y < 2; y++) {
for (int x = -1; x < 2; x++) {
if (x == 0 && y == 0 && z ==0 && w == 0) {
// own
} else {
d4->w = w;
d4->z = z;
d4->y = y;
d4->x = x;
d4++;
}
if (w == 1) { // add 3d rule here too
if (x == 0 && y == 0 && z ==0) {
// own
} else {
d3->z = z;
d3->y = y;
d3->x = x;
d3++;
}
}
}
}
}
}
}
int calculateNext(char *buf, int sideLen, int z, int level) {
int len = sideLen + 2;
int off = 1;
int offZ = (z == 1 ? sideLen / 2 : 1);
char cube[len*len*len];
char *c = cube;
int countHash = 0;
for (int nz = 0; nz < len; nz++) {
for (int ny = 0; ny < len; ny++) {
for (int nx = 0; nx < len; nx++) {
int n = 0;
for (int i = 0; i < sizeof dir / sizeof dir[0]; i++) {
dir_t *d = &dir[i];
uint16_t px = nx - off + d->x;
uint16_t py = ny - off + d->y;
uint16_t pz = nz - offZ + d->z;
if (px < sideLen && py < sideLen && pz < z &&
buf[pz*sideLen*sideLen + py*sideLen + px] == '#')
{
n++;
}
}
uint16_t px = nx - off, py = ny - off, pz = nz - offZ;
bool wasSet = (px < sideLen && py < sideLen && pz < z &&
buf[pz*sideLen*sideLen + py*sideLen + px] == '#');
*c = n == 3 ? '#' : wasSet && n == 2 ? '#' : '.';
if (*c++ == '#') {
countHash++;
}
}
}
}
return level > 1 ? calculateNext(cube, len, len, level - 1) : countHash;
}
int calculateNext4D(char *buf, int sideLen, int z, int level) {
int len = sideLen + 2;
int off = 1;
int offZ = (z == 1 ? sideLen / 2 : 1);
char cube[len*len*len*len];
char *c = cube;
int countHash = 0;
for (int nw = 0; nw < len; nw++) {
for (int nz = 0; nz < len; nz++) {
for (int ny = 0; ny < len; ny++) {
for (int nx = 0; nx < len; nx++) {
int n = 0;
for (int i = 0; i < sizeof dir4d / sizeof dir4d[0]; i++) {
dir4_t *d = &dir4d[i];
uint16_t px = nx - off + d->x;
uint16_t py = ny - off + d->y;
uint16_t pz = nz - offZ + d->z;
uint16_t pw = nw - offZ + d->w;
if (px < sideLen && py < sideLen && pz < z && pw < z &&
buf[pw*sideLen*sideLen*sideLen + pz*sideLen*sideLen + py*sideLen + px] == '#')
{
n++;
}
}
uint16_t px = nx - off, py = ny - off, pz = nz - offZ, pw = nw - offZ;
bool wasSet = (px < sideLen && py < sideLen && pz < z && pw < z &&
buf[pw*sideLen*sideLen*sideLen + pz*sideLen*sideLen + py*sideLen + px] == '#');
*c = n == 3 ? '#' : wasSet && n == 2 ? '#' : '.';
if (*c++ == '#') {
countHash++;
}
}
}
}
}
return level > 1 ? calculateNext4D(cube, len, len, level - 1) : countHash;
}
int main(void) {
FILE* f = fopen("input17.txt", "r");
if (f != NULL) {
int sideLen = 0;
char buf[200];
char *b = buf;
while (fgets(b, sizeof buf - (b - buf), f) != NULL) {
if (sideLen == 0) {
sideLen = strlen(b);
if (b[sideLen - 1] == 10) {
sideLen--;
}
}
b += sideLen;
}
fclose(f);
calcDir();
printf("part 1: count activate %d\n", calculateNext(buf, sideLen, 1, 6));
printf("part 2: count activate 4D %d\n", calculateNext4D(buf, sideLen, 1, 6));
}
return 0;
}