summary refs log tree commit diff homepage
path: root/2018/day04.c
blob: 78506ab656fa6629c561da5fae13525b7e25d8d2 (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
#include <stdio.h>
#include <stdlib.h>
#include <string.h>

typedef unsigned uint;

enum { Len = 4096 };
uint guards[Len][60];

int main() {
	uint id, sleep;
	while (!feof(stdin)) {
		uint year, month, day, hour, minute;
		char word[256];
		scanf(
			"[%u-%u-%u %u:%u] %255s #%u",
			&year, &month, &day, &hour, &minute, word, &id
		);
		scanf("%*[^\n]\n");

		if (!strcmp(word, "falls")) sleep = minute;
		if (!strcmp(word, "wakes")) {
			for (uint m = sleep; m < minute; ++m) {
				guards[id][m]++;
			}
		}
	}
	uint maxID = 0, maxSum = 0;
	for (uint i = 0; i < Len; ++i) {
		uint sum = 0;
		for (uint m = 0; m < 60; ++m) {
			sum += guards[i][m];
		}
		if (sum < maxSum) continue;
		maxSum = sum;
		maxID = i;
	}
	uint maxMin = 0, maxSleep = 0;
	for (uint m = 0; m < 60; ++m) {
		if (guards[maxID][m] < maxSleep) continue;
		maxSleep = guards[maxID][m];
		maxMin = m;
	}
	printf("%u\n", maxID * maxMin);
	maxID = maxMin = maxSleep = 0;
	for (uint i = 0; i < Len; ++i) {
		for (uint m = 0; m < 60; ++m) {
			if (guards[i][m] < maxSleep) continue;
			maxSleep = guards[i][m];
			maxMin = m;
			maxID = i;
		}
	}
	printf("%u\n", maxID * maxMin);
}
' class='logmsg'> 2021-08-22Add ISC license headerJune McEnroe 2021-08-22Update to Linux man-pages 5.12Štěpán Němec 2021-06-21Add manuals for macOS 11.3June McEnroe 2021-05-08Update to OpenBSD 6.9June McEnroe 2021-04-26Update to Linux man-pages 5.11June McEnroe 2021-04-26Update to FreeBSD 13.0June McEnroe 2021-01-27Completely rewrite how manuals are fetched and installedJune McEnroe Also add section 6 manuals from NetBSD and OpenBSD! 2020-12-14Update to man-pages-posix 2017-aJune McEnroe 2020-12-14Update to OpenBSD 6.8June McEnroe 2020-12-14Update to NetBSD 9.1June McEnroe 2020-12-14Update to man-pages 5.09June McEnroe 2020-12-14Update to FreeBSD 12.2June McEnroe 2020-06-08Update to OpenBSD 6.7June McEnroe 2020-05-04Add hack for macOS to search extra man sectionsJune McEnroe 2020-05-04Don't clear MANSECTJune McEnroe