aboutsummaryrefslogtreecommitdiff
path: root/2021/21/solve.c
blob: 32bf70ae260f1ddeb0dec1fa521a6426bd2e4dbf (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
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
#include <stdio.h>
#include <stdlib.h>
#include <time.h>

#define ABS(a) ((a) < 0 ? -(a) : (a))
#define MIN(a, b) (((a) < (b)) ? (a) : (b))
#define MAX(a, b) (((a) > (b)) ? (a) : (b))
#define COUNT(a) ((int)(sizeof(a) / sizeof 0 [a]))

#define FORLINE                                                                                    \
	char *line = NULL;                                                                         \
	size_t len = 0;                                                                            \
	while (getline(&line, &len, fp) != EOF)
#define FREELINE                                                                                   \
	if (line)                                                                                  \
	free(line)

#define FORCH                                                                                      \
	char ch = 0;                                                                               \
	while ((ch = fgetc(fp)) != EOF)

#define WHOLE                                                                                      \
	fseek(fp, 0, SEEK_END);                                                                    \
	long fsize = ftell(fp);                                                                    \
	fseek(fp, 0, SEEK_SET);                                                                    \
	char *data = malloc(fsize + 1);                                                            \
	fread(data, 1, fsize, fp);                                                                 \
	data[fsize] = 0;

static int part_one(FILE *fp)
{
	int pos1, pos2;
	fscanf(fp, "Player 1 starting position: %d\nPlayer 2 starting position: %d", &pos1, &pos2);

	int score1 = 0, score2 = 0;
	int player = 0;
	int a = 1, b = 2, c = 3;
	int aah = 0;
	while (score1 < 1000 && score2 < 1000) {
		aah += 3;
		if (player == 0) {
			pos1 += (a += 3) + (b += 3) + (c += 3);
			if (pos1 > 10)
				pos1 = pos1 % 10 + 1;
			score1 += pos1;
			player = 1;
		} else if (player == 1) {
			pos2 += (a += 3) + (b += 3) + (c += 3);
			if (pos2 > 10)
				pos2 = pos2 % 10 + 1;
			score2 += pos2;
			player = 0;
		}
	}

	return MIN(score1, score2) * aah;
}

struct won {
	long a, b;
};

static struct {
	int exists;
	struct won won;
} cache[10][10][21][21] = { 0 };

static struct won count(long player1, long player2, long score1, long score2)
{
	if (cache[player1 - 1][player2 - 1][score1][score2].exists)
		return cache[player1 - 1][player2 - 1][score1][score2].won;

	struct won won = { 0 };
	for (int a = 1; a <= 3; a++) {
		for (int b = 1; b <= 3; b++) {
			for (int c = 1; c <= 3; c++) {
				int sum = a + b + c;
				long player_switch = (player1 + sum - 1) % 10 + 1;
				long score_switch = score1 + player_switch;
				if (score_switch >= 21) {
					won.a += 1;
				} else {
					// Switch
					struct won aah =
						count(player2, player_switch, score2, score_switch);
					won.a += aah.b;
					won.b += aah.a;
				}
			}
		}
	}

	cache[player1 - 1][player2 - 1][score1][score2].exists = 1;
	cache[player1 - 1][player2 - 1][score1][score2].won = won;

	return won;
}

static long part_two(FILE *fp)
{
	int player1, player2;
	fscanf(fp, "Player 1 starting position: %d\nPlayer 2 starting position: %d", &player1,
	       &player2);

	struct won won = count(player1, player2, 0, 0);
	return MAX(won.a, won.b);
}

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

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

	clock_t tic = clock();
	printf("%d\n", part_one(fp));
	rewind(fp);
	printf("%lu\n", part_two(fp));
	clock_t toc = clock();
	printf("TIME: %f seconds\n", (double)(toc - tic) / CLOCKS_PER_SEC);

	fclose(fp);
	return 0;
}