aboutsummaryrefslogtreecommitdiff
path: root/2021/06/solve.c
blob: 44fd93bd63d3241f9c378a06273752262fce824b (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
45
46
47
48
49
50
51
52
53
54
55
56
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <time.h>

static void iterate(long *timers, long *birth, long *cnt)
{
	long next = birth[0];
	birth[0] = birth[1];
	birth[1] = timers[0];

	long x = timers[0];
	for (int i = 0; i < 6; i++)
		timers[i] = timers[i + 1];
	timers[6] = x + next;
	*cnt += birth[1];
}

static void solve(FILE *fp)
{
	long timers[7] = { 0 };
	long birth[2] = { 0 };

	long cnt = 0;
	char ch;
	int timer;
	while (fscanf(fp, "%d%c", &timer, &ch) != EOF && (ch == ',' || ch == '\n')) {
		cnt++;
		timers[timer]++;
	}

	for (int i = 0; i < 80; i++)
		iterate(timers, birth, &cnt);
	printf("%lu\n", cnt);
	for (int i = 80; i < 256; i++)
		iterate(timers, birth, &cnt);
	printf("%lu\n", cnt);
}

int main(int argc, char *argv[])
{
	(void)argc;
	(void)argv;

	FILE *fp = fopen("input", "r");
	if (!fp)
		exit(EXIT_FAILURE);

	clock_t tic = clock();
	solve(fp);
	clock_t toc = clock();
	printf("TIME: %f seconds\n", (double)(toc - tic) / CLOCKS_PER_SEC);

	fclose(fp);
	return 0;
}