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);
}
veJohn Keeping 2015-08-13ui-shared: use common function in print_rel_date()John Keeping 2015-08-13ui-shared: extract date formatting to a functionJohn Keeping 2015-08-13filter: don't use dlsym unnecessarilyJohn Keeping 2015-08-13ui-tree: use "sane" isgraph()John Keeping 2015-08-13cgit.h: move stdbool.h from ui-shared.hJohn Keeping 2015-08-13cache.c: fix header orderJohn Keeping 2015-08-13configfile.c: don't include system headers directlyJohn Keeping 2015-08-13Remove redundant includesJohn Keeping 2015-08-13Makefile: include Git's config.mak.unameJohn Keeping 2015-08-13tests: allow shell to be overriddenJohn Keeping 2015-08-13redirect: cleanlinessJason A. Donenfeld 2015-08-13redirect: be more careful for different cgi setupsJason A. Donenfeld 2015-08-12ui-log: fix double countingJohn Keeping 2015-08-12log: allow users to follow a fileJohn Keeping 2015-08-12shared: make cgit_diff_tree_cb publicJohn Keeping 2015-08-12t0110: Chain together using &&Jason A. Donenfeld 2015-08-12about: always ensure page has a trailing slashJason A. Donenfeld 2015-08-12filters: apply HTML escapingLazaros Koromilas 2015-08-12git: update to v2.5.0Christian Hesse 2015-08-12Fix processing of repo.hide and repo.ignoreDaniel Reichelt