aboutsummaryrefslogtreecommitdiff
path: root/2015/02/solve.c
blob: e1030a850d8d36bd75effddc958058576a363f79 (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
#include <stdio.h>
#include <stdlib.h>
#include <time.h>

static int part_one(FILE *fp)
{
	int res = 0;

	char *line = NULL;
	size_t len = 0;
	while (getline(&line, &len, fp) != EOF) {
		int w, l, h;
		sscanf(line, "%dx%dx%d", &w, &l, &h);
		res += 2 * l * w + 2 * w * h + 2 * h * l;

		int a = w * l, b = l * h, c = w * h;
		res += (a <= b && a <= c) ? a : (b <= c && b <= a) ? b : (c <= a && c <= b) ? c : 0;
	}

	if (line)
		free(line);

	return res;
}

static int part_two(FILE *fp)
{
	int res = 0;

	char *line = NULL;
	size_t len = 0;
	while (getline(&line, &len, fp) != EOF) {
		int w, l, h;
		sscanf(line, "%dx%dx%d", &w, &l, &h);

		int a = 2 * w + 2 * l, b = 2 * l + 2 * h, c = 2 * w + 2 * h;
		res += (a <= b && a <= c) ? a : (b <= c && b <= a) ? b : (c <= a && c <= b) ? c : 0;
		res += w * h * l;
	}

	if (line)
		free(line);

	return res;
}

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("%d\n", part_two(fp));
	clock_t toc = clock();
	printf("TIME: %f seconds\n", (double)(toc - tic) / CLOCKS_PER_SEC);

	fclose(fp);
	return 0;
}