summary refs log tree commit diff homepage
path: root/2018
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2018-12-07 12:32:44 -0500
committerJune McEnroe <june@causal.agency>2020-11-22 00:14:25 -0500
commitcbf6945921f8711d15cde6104d65ad586a17b1e6 (patch)
treed4af41432da8dc7d9b4c6303f7ec4392983bc701 /2018
parentSolve day 6 part 2 (diff)
downloadaoc-cbf6945921f8711d15cde6104d65ad586a17b1e6.tar.gz
aoc-cbf6945921f8711d15cde6104d65ad586a17b1e6.zip
Solve day 7 part 1
Diffstat (limited to '')
-rw-r--r--2018/day07.c27
1 files changed, 27 insertions, 0 deletions
diff --git a/2018/day07.c b/2018/day07.c
new file mode 100644
index 0000000..43dd786
--- /dev/null
+++ b/2018/day07.c
@@ -0,0 +1,27 @@
+#include <stdio.h>
+#include <stdlib.h>
+
+typedef unsigned uint;
+
+int main() {
+	uint steps = 0;
+	uint deps[26] = {0};
+	while (!feof(stdin)) {
+		char dep, step;
+		scanf(
+			"Step %c must be finished before step %c can begin.\n",
+			&dep, &step
+		);
+		deps[step - 'A'] |= 1 << (dep - 'A');
+	}
+	while (steps != (1 << 26) - 1) {
+		for (uint i = 0; i < 26; ++i) {
+			if (steps & (1 << i)) continue;
+			if ((deps[i] & steps) != deps[i]) continue;
+			printf("%c", 'A' + i);
+			steps |= (1 << i);
+			break;
+		}
+	}
+	printf("\n");
+}
June McEnroe Also don't fail hard on non-forward-search definitions. 2021-01-12List both Makefile and html.sh under README.7June McEnroe 2021-01-12Add htagml exampleJune McEnroe 2021-01-12Use mandoc and htagml for bin htmlJune McEnroe 2021-01-12Add htagmlJune McEnroe 2021-01-12Replace causal.agency with a simple mdoc pageJune McEnroe 2021-01-11Publish "Using vi"June McEnroe 2021-01-11Enable diff.colorMovedJune McEnroe 2021-01-10Set less search case-insensitiveJune McEnroe 2021-01-10Set EXINITJune McEnroe neovim is laggy as hell in my OpenBSD VM, so I switched to vi so I could type without getting frustrated. 2021-01-09Add c -t flag to print expression typeJune McEnroe Also add missing float case. 2021-01-05Update taglineJune McEnroe1cb4593706bfeb721b478bf4e7ea7c6&follow=1'>Factor out common parts of downgrade messagesJune McEnroe Also bump the message cap to 1024 because that is ostensibly useful for replying to older messages. 2021-09-14Add downgrade IRC botJune McEnroe 2021-09-14Sort by title if authors matchJune McEnroe There are probably better things to sort by but title definitely always exists. 2021-09-13Swap-remove tags as they're foundJune McEnroe This makes it even faster. From ~1s on a sqlite3.c amalgamation to ~0.85s. 2021-09-12Replace htagml regex with strncmpJune McEnroe Since ctags only ever produces regular expressions of the form /^re$/ or /^re/ with no other special characters, instead unescape the pattern and simply use strncmp. Running on a sqlite3.c amalgamation, the regex version takes ~37s while the strncmp version takes ~1s, producing identical output. Big win! 2021-09-11Also defer printing comment for lone close-parensJune McEnroe 2021-09-10Publish "git-comment"June McEnroe 2021-09-10Add git comment --pretty optionJune McEnroe 2021-09-08Defer printing comment if line is blank or closing braceJune McEnroe This fixes badly indented comments. 2021-09-08Up default min-repeat to 30 linesJune McEnroe 2021-09-08Handle dirty lines in git-commentJune McEnroe 2021-09-08Document and install git-commentJune McEnroe 2021-09-08Add repeat and all options to git-commentJune McEnroe 2021-09-08Add group threshold to git-commentJune McEnroe