summary refs log tree commit diff homepage
path: root/2018/day14.c
blob: 9df7190b9e4e7f99e92a638341f4d4989a6bd072 (plain) (blame)
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
#include <stdio.h>
#include <stdlib.h>

typedef unsigned uint;

struct Vec {
	size_t cap, len;
	uint *ptr;
};
static struct Vec new(size_t cap) {
	struct Vec vec = { cap };
	vec.ptr = malloc(sizeof(*vec.ptr) * cap);
	return vec;
}
static void push(struct Vec *vec, uint val) {
	if (vec->len == vec->cap) {
		vec->cap *= 2;
		vec->ptr = realloc(vec->ptr, sizeof(*vec->ptr) * vec->cap);
	}
	vec->ptr[vec->len++] = val;
}

int main() {
	uint count;
	scanf("%u", &count);

	struct Vec vec = new(256);
	push(&vec, 3);
	push(&vec, 7);

	size_t elf[2] = { 0, 1 };
	for (uint i = 0; i < count + 10; ++i) {
		uint sum = vec.ptr[elf[0]] + vec.ptr[elf[1]];
		if (sum / 10) push(&vec, sum / 10);
		push(&vec, sum % 10);
		elf[0] = (elf[0] + 1 + vec.ptr[elf[0]]) % vec.len;
		elf[1] = (elf[1] + 1 + vec.ptr[elf[1]]) % vec.len;
	}

	for (uint i = count; i < count + 10; ++i) {
		printf("%u", vec.ptr[i]);
	}
	printf("\n");
}