summaryrefslogtreecommitdiff
path: root/1b.c
blob: a1fce3753cef67670d7d79dd99fffd13e4092967 (plain)
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>


#define arrlen(x) (sizeof(x) / sizeof(x[0]))


long
checkmax(long * maxcals, long * maxelfs, int n, int cal, int elf)
{
	long i, j;
	
	for (i = 0; i < n; ++i) {
		if (cal > maxcals[i]) {
			if ((j = i + 1) < n) {
				memmove(maxcals + j, maxcals + i, (n - j) * sizeof(long));
				memmove(maxelfs + j, maxelfs + i, (n - j) * sizeof(long));
			}
			maxcals[i] = cal;
			maxelfs[i] = elf;
			break;
		}
	}

	return i;
}


int
main()
{
	char buf[BUFSIZ];
	long cal = 0, maxcal[3] = {0}, elf = 0, maxelf[3] = {0};

	while (fgets(buf, sizeof(buf), stdin)) {
		char * pbuf = buf;
		long n;
		if ((n = strtol(buf, &pbuf, 10)) == 0 && pbuf == buf) {
			checkmax(maxcal, maxelf, arrlen(maxcal), cal, elf);
			cal = 0;
			++elf;
		}
		else {
			cal += n;
		}
	}
	checkmax(maxcal, maxelf, arrlen(maxcal), cal, elf);

	printf("maxcal: %ld (elf: %ld/%ld/%ld)\n",
			maxcal[0] + maxcal[1] + maxcal[2],
			maxelf[0], maxelf[1], maxelf[2]);

	return 0;
}