-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathday12b.c
228 lines (186 loc) · 5.47 KB
/
day12b.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
// Licensed under the MIT License.
// Hot Springs Part 2
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <time.h>
#define BUFFER_SIZE 64
#define DELIMITERS ","
#define KEY_EMPTY -1
#define LONG_PATTERN_BUFFER_CAPACITY 256
#define SHORT_PATTERN_BUFFER_CAPACITY 32
struct DictionaryEntry
{
int key;
long long value;
struct DictionaryEntry* next;
};
struct Dictionary
{
struct DictionaryEntry* first;
struct DictionaryEntry buckets[LONG_PATTERN_BUFFER_CAPACITY];
};
struct Pattern
{
char* symbols;
int length;
};
typedef char* String;
typedef struct DictionaryEntry* DictionaryEntry;
typedef struct Dictionary* Dictionary;
typedef struct Pattern* Pattern;
void dictionary(Dictionary instance)
{
instance->first = NULL;
for (int i = 0; i < LONG_PATTERN_BUFFER_CAPACITY; i++)
{
instance->buckets[i].key = KEY_EMPTY;
instance->buckets[i].value = 0;
instance->buckets[i].next = NULL;
}
}
void dictionary_increment(Dictionary instance, int key, long long change)
{
if (instance->buckets[key].key == KEY_EMPTY)
{
DictionaryEntry first = instance->first;
instance->first = instance->buckets + key;
instance->buckets[key].next = first;
}
instance->buckets[key].key = key;
instance->buckets[key].value += change;
}
void dictionary_copy(Dictionary destination, Dictionary source)
{
dictionary(destination);
for (DictionaryEntry entry = source->first; entry; entry = entry->next)
{
dictionary_increment(destination, entry->key, entry->value);
}
}
void pattern(Pattern instance, char* symbols)
{
instance->length = 0;
instance->symbols = symbols;
}
void pattern_append(Pattern instance, char symbol)
{
instance->symbols[instance->length] = symbol;
instance->length++;
}
void pattern_append_many(Pattern instance, char symbol, int count)
{
memset(instance->symbols + instance->length, symbol, count);
instance->length += count;
}
void pattern_concat(Pattern instance, Pattern other)
{
memcpy(
instance->symbols + instance->length,
other->symbols,
other->length);
instance->length += other->length;
}
void pattern_set(Pattern instance, int index, char value)
{
instance->symbols[index] = value;
}
static void read(char symbol, Pattern pattern, Dictionary current)
{
struct Dictionary view;
dictionary_copy(&view, current);
dictionary(current);
for (DictionaryEntry entry = view.first; entry; entry = entry->next)
{
switch (symbol)
{
case '?':
if (entry->key + 1 < pattern->length)
{
dictionary_increment(current, entry->key + 1, entry->value);
}
if (pattern->symbols[entry->key] == '.')
{
dictionary_increment(current, entry->key, entry->value);
}
break;
case '.':
if (entry->key + 1 < pattern->length &&
pattern->symbols[entry->key + 1] == '.')
{
dictionary_increment(current, entry->key + 1, entry->value);
}
if (pattern->symbols[entry->key] == '.')
{
dictionary_increment(current, entry->key, entry->value);
}
break;
case '#':
if (entry->key + 1 < pattern->length &&
pattern->symbols[entry->key + 1] == '#')
{
dictionary_increment(current, entry->key + 1, entry->value);
}
break;
}
}
}
static void scan(Pattern text, Pattern pattern, Dictionary current)
{
for (char* p = text->symbols; p < text->symbols + text->length; p++)
{
read(*p, pattern, current);
}
}
int main(void)
{
long long total = 0;
char buffer[BUFFER_SIZE];
clock_t start = clock();
while (fgets(buffer, sizeof buffer, stdin))
{
char* mid = strchr(buffer, ' ');
if (!mid)
{
fprintf(stderr, "Error: Format.\n");
return 1;
}
char patternBuffer[LONG_PATTERN_BUFFER_CAPACITY];
char shortPatternBuffer[SHORT_PATTERN_BUFFER_CAPACITY];
struct Dictionary current;
struct Pattern text =
{
.symbols = buffer,
.length = mid - buffer
};
struct Pattern longPattern;
struct Pattern shortPattern;
pattern(&longPattern, patternBuffer);
pattern(&shortPattern, shortPatternBuffer);
pattern_append(&longPattern, '.');
for (String token = strtok(mid, DELIMITERS);
token;
token = strtok(NULL, DELIMITERS))
{
pattern_append_many(&shortPattern, '#', atoi(token));
pattern_append(&shortPattern, '.');
}
for (int i = 0; i < 5; i++)
{
pattern_concat(&longPattern, &shortPattern);
}
dictionary(¤t);
dictionary_increment(¤t, 0, 1);
for (int i = 0; i < 4; i++)
{
scan(&text, &longPattern, ¤t);
read('?', &longPattern, ¤t);
}
scan(&text, &longPattern, ¤t);
total +=
current.buckets[longPattern.length - 1].value +
current.buckets[longPattern.length - 2].value;
}
printf("12b %lld %lf\n", total, (double)(clock() - start) / CLOCKS_PER_SEC);
return 0;
}