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

static size_t react(char *buf, size_t len) {
	for (size_t i = 0; i < len - 1; ++i) {
		if (tolower(buf[i]) != tolower(buf[i + 1])) continue;
		if (islower(buf[i]) == islower(buf[i + 1])) continue;
		len -= 2;
		memmove(&buf[i], &buf[i + 2], len - i);
		i = (size_t)-1;
	}
	return len;
}

int main() {
	char buf[50000];
	size_t len = fread(buf, 1, sizeof(buf), stdin);

	char buf1[50000];
	memcpy(buf1, buf, len);
	printf("%zu\n", react(buf1, len));

	size_t min = len;
	for (char x = 'a'; x <= 'z'; ++x) {
		char buf2[50000];
		size_t len2 = 0;
		for (size_t i = 0; i < len; ++i) {
			if (tolower(buf[i]) == x) continue;
			buf2[len2++] = buf[i];
		}
		len2 = react(buf2, len2);
		if (len2 < min) min = len2;
	}
	printf("%zu\n", min);
}
rc before applying -v or -eJune McEnroe Otherwise a bind -v in .editrc will take precedence and overwrite the ^I binding for sh-complete. 2019-12-20Disable signing commitsJune McEnroe Why did I ever turn this on? This gets me nothing but inconvenience. RIP to all the wasted bytes in my git repos. 2019-12-19Ignore about-filterJune McEnroe 2019-12-19Fix matching make tags with no sourcesJune McEnroe 2019-12-19Avoid matching := assignments as tagsJune McEnroe 2019-12-18Hide line numbers when rendering mdocJune McEnroe Hack: output an extra <td> after rendering mdoc so that line numbers can be hidden based on there being three. This required splitting source-filter and about-filter since on about pages there is no table. 2019-12-18Customize cgit CSSJune McEnroe 2019-12-18Use :target rather than :focus pseudo-classJune McEnroe :target persists after you click on something else. 2019-12-18Copy cgit auxiliary binaries properlyJune McEnroe 2019-12-18Add git.causal.agency cgit configJune McEnroe 2019-12-18Bail from hi if input is binaryJune McEnroe NULs in the input cause an infinite loop in htmlEscape, not to mention regexes obviously not working, etc. 2019-12-16Post "cgit setup"June McEnroe