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>2018-12-07 12:32:44 -0500
commit67bc63c6efb2cf7192395d4011323fcfdf4473d7 (patch)
tree09d344fa5af445d2252861ba5dafc75d092bb91d /2018
parentSolve day 6 part 2 (diff)
downloadaoc-67bc63c6efb2cf7192395d4011323fcfdf4473d7.tar.gz
aoc-67bc63c6efb2cf7192395d4011323fcfdf4473d7.zip
Solve day 7 part 1
Diffstat (limited to '2018')
-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");
+}