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

typedef unsigned uint;

static uint sum;

static uint meta(void) {
	uint meta;
	scanf("%u", &meta);
	sum += meta;
	return meta;
}

static uint node(void) {
	uint nchild, nmeta;
	scanf("%u %u", &nchild, &nmeta);
	uint children[nchild];
	uint metas[nmeta];
	for (uint i = 0; i < nchild; ++i) {
		children[i] = node();
	}
	for (uint i = 0; i < nmeta; ++i) {
		metas[i] = meta();
	}
	uint val = 0;
	if (nchild) {
		for (uint i = 0; i < nmeta; ++i) {
			if (!metas[i] || metas[i] > nchild) continue;
			val += children[metas[i] - 1];
		}
	} else {
		for (uint i = 0; i < nmeta; ++i) {
			val += metas[i];
		}
	}
	return val;
}

int main() {
	uint val = node();
	printf("%u\n", sum);
	printf("%u\n", val);
}
rg/cgi-bin/cvsweb/src/distrib/sets/lists/base/mi?annotate=1.1065 2022-05-08Update to OpenBSD 7.1 2062.73June McEnroe 2021-10-15Update to OpenBSD 7.0 2062.63June McEnroe 2021-08-29Update to Linux man-pages 5.13 2062.53Štěpán Němec 2021-08-26Update to NetBSD 9.2 2062.52June McEnroe 2021-08-26Support DESTDIR in install/uninstallJune McEnroe 2021-08-26Add version number generatorJune McEnroe 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