-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathday21a.c
395 lines (312 loc) · 7.93 KB
/
day21a.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
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
// Licensed under the MIT License.
// Step Counter Part 1
#include <stdbool.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <time.h>
#define COORDINATE_SET_BUCKETS 24593
#define DIMENSION 256
#define EXCEPTION_FORMAT "Error: Format.\n"
#define EXCEPTION_OUT_OF_MEMORY "Error: Out of memory.\n"
#define STATE_QUEUE_CAPACITY 2048
enum AddResult
{
ADD_RESULT_ADDED,
ADD_RESULT_NOT_ADDED,
ADD_RESULT_OUT_OF_MEMORY
};
struct Coordinate
{
int i;
int j;
};
struct CoordinateSetEntry
{
struct CoordinateSetEntry* nextEntry;
struct Coordinate item;
};
struct CoordinateSetBucket
{
struct CoordinateSetEntry* firstEntry;
struct CoordinateSetBucket* nextBucket;
};
struct CoordinateSet
{
struct CoordinateSetBucket* firstBucket;
struct CoordinateSetBucket buckets[COORDINATE_SET_BUCKETS];
};
struct Matrix
{
struct Coordinate origin;
int rows;
int columns;
char items[DIMENSION * DIMENSION];
};
struct State
{
struct Coordinate coordinate;
int priority;
};
struct StateQueue
{
struct State items[STATE_QUEUE_CAPACITY];
int first;
int last;
};
typedef enum AddResult AddResult;
typedef struct Coordinate* Coordinate;
typedef struct CoordinateSetEntry* CoordinateSetEntry;
typedef struct CoordinateSetBucket* CoordinateSetBucket;
typedef struct CoordinateSet* CoordinateSet;
typedef struct Matrix* Matrix;
typedef struct State* State;
typedef struct StateQueue* StateQueue;
void coordinate_empty(Coordinate result)
{
result->i = -1;
result->j = -1;
}
void coordinate_set(CoordinateSet instance)
{
instance->firstBucket = NULL;
for (int i = 0; i < COORDINATE_SET_BUCKETS; i++)
{
instance->buckets[i].firstEntry = NULL;
instance->buckets[i].nextBucket = NULL;
}
}
AddResult coordinate_set_add(CoordinateSet instance, Coordinate item)
{
CoordinateSetEntry* p;
unsigned int hash = (item->i * DIMENSION + item->j) %
COORDINATE_SET_BUCKETS;
for (p = &instance->buckets[hash].firstEntry; *p; p = &(*p)->nextEntry)
{
if (item->i == (*p)->item.i && item->j == (*p)->item.j)
{
return ADD_RESULT_NOT_ADDED;
}
}
CoordinateSetEntry entry = malloc(sizeof * entry);
if (!entry)
{
return ADD_RESULT_OUT_OF_MEMORY;
}
if (!instance->buckets[hash].firstEntry)
{
CoordinateSetBucket first = instance->firstBucket;
instance->buckets[hash].nextBucket = first;
instance->firstBucket = instance->buckets + hash;
}
entry->item = *item;
entry->nextEntry = NULL;
*p = entry;
return ADD_RESULT_ADDED;
}
void coordinate_set_clear(CoordinateSet instance)
{
for (CoordinateSetBucket bucket = instance->firstBucket;
bucket;
bucket = bucket->nextBucket)
{
CoordinateSetEntry entry = bucket->firstEntry;
while (entry)
{
CoordinateSetEntry nextEntry = entry->nextEntry;
free(entry);
entry = nextEntry;
}
bucket->firstEntry = NULL;
}
instance->firstBucket = NULL;
}
void matrix(Matrix instance, int n)
{
coordinate_empty(&instance->origin);
instance->rows = 0;
instance->columns = n;
}
char matrix_get(Matrix instance, int i, int j)
{
return instance->items[(instance->columns * i) + j];
}
void matrix_add_row(Matrix instance, char values[])
{
int m = instance->rows;
instance->rows = m + 1;
memcpy(
instance->items + (instance->columns * m),
values,
instance->columns);
}
void state(State instance, Coordinate coordinate)
{
instance->coordinate = *coordinate;
instance->priority = 0;
}
void state_queue(StateQueue instance)
{
instance->first = -1;
instance->last = -1;
}
State state_queue_enqueue(StateQueue instance)
{
if (instance->first == -1)
{
instance->first = 0;
instance->last = 0;
}
else if (instance->first && instance->last == STATE_QUEUE_CAPACITY - 1)
{
instance->last = 0;
}
else
{
instance->last++;
}
return instance->items + instance->last;
}
bool state_queue_try_dequeue(StateQueue instance, State result)
{
if (instance->first == -1)
{
return false;
}
*result = instance->items[instance->first];
if (instance->first == instance->last)
{
instance->first = -1;
instance->last = -1;
}
else if (instance->first == STATE_QUEUE_CAPACITY - 1)
{
instance->first = 0;
}
else
{
instance->first++;
}
return true;
}
static void scan_hi(Matrix matrix, State current, StateQueue queue)
{
int i = current->coordinate.i - 1;
if (i < 0 || matrix_get(matrix, i, current->coordinate.j) == '#')
{
return;
}
State state = state_queue_enqueue(queue);
state->coordinate.i = i;
state->coordinate.j = current->coordinate.j;
state->priority = current->priority + 1;
}
static void scan_lo(Matrix matrix, State current, StateQueue queue)
{
int i = current->coordinate.i + 1;
if (i >= matrix->rows || matrix_get(matrix, i, current->coordinate.j) == '#')
{
return;
}
State state = state_queue_enqueue(queue);
state->coordinate.i = i;
state->coordinate.j = current->coordinate.j;
state->priority = current->priority + 1;
}
static void scan_left(Matrix matrix, State current, StateQueue queue)
{
int j = current->coordinate.j - 1;
if (j < 0 || matrix_get(matrix, current->coordinate.i, j) == '#')
{
return;
}
State state = state_queue_enqueue(queue);
state->coordinate.i = current->coordinate.i;
state->coordinate.j = j;
state->priority = current->priority + 1;
}
static void scan_right(Matrix matrix, State current, StateQueue queue)
{
int j = current->coordinate.j + 1;
if (j >= matrix->columns ||
matrix_get(matrix, current->coordinate.i, j) == '#')
{
return;
}
State state = state_queue_enqueue(queue);
state->coordinate.i = current->coordinate.i;
state->coordinate.j = j;
state->priority = current->priority + 1;
}
int main(void)
{
char buffer[DIMENSION + 2];
clock_t start = clock();
if (!fgets(buffer, sizeof buffer, stdin))
{
fprintf(stderr, EXCEPTION_FORMAT);
return 1;
}
int n = strlen(buffer) - 1;
if (n < 1)
{
fprintf(stderr, EXCEPTION_FORMAT);
return 1;
}
struct Matrix a;
matrix(&a, n);
do
{
matrix_add_row(&a, buffer);
char* token = strchr(buffer, 'S');
if (token)
{
a.origin.i = a.rows - 1;
a.origin.j = token - buffer;
}
}
while (fgets(buffer, n + 2, stdin));
if (a.origin.i < 0 || a.origin.j < 0)
{
fprintf(stderr, EXCEPTION_FORMAT);
return 1;
}
CoordinateSet visited = malloc(sizeof * visited);
if (!visited)
{
fprintf(stderr, EXCEPTION_OUT_OF_MEMORY);
return 1;
}
int total = 0;
struct StateQueue queue;
struct State current;
coordinate_set(visited);
state_queue(&queue);
state(state_queue_enqueue(&queue), &a.origin);
while (state_queue_try_dequeue(&queue, ¤t))
{
switch (coordinate_set_add(visited, ¤t.coordinate))
{
case ADD_RESULT_ADDED: break;
case ADD_RESULT_NOT_ADDED: continue;
case ADD_RESULT_OUT_OF_MEMORY:
fprintf(stderr, EXCEPTION_OUT_OF_MEMORY);
return 1;
}
if (current.priority % 2 == 0)
{
total++;
}
if (current.priority > 64)
{
continue;
}
scan_hi(&a, ¤t, &queue);
scan_lo(&a, ¤t, &queue);
scan_left(&a, ¤t, &queue);
scan_right(&a, ¤t, &queue);
}
printf("21a %d %lf\n", total, (double)(clock() - start) / CLOCKS_PER_SEC);
coordinate_set_clear(visited);
free(visited);
}