aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJulien Dessaux2022-08-12 21:42:25 +0200
committerJulien Dessaux2022-08-12 21:42:25 +0200
commitabb58800e2b1b60c71e4c01da4df613c8502aae4 (patch)
treeb591b8ba90e9e2c562f9fc094a2d00d22f0b8b81
parentAdded gitignore (diff)
downloadadvent-of-code-abb58800e2b1b60c71e4c01da4df613c8502aae4.tar.gz
advent-of-code-abb58800e2b1b60c71e4c01da4df613c8502aae4.tar.bz2
advent-of-code-abb58800e2b1b60c71e4c01da4df613c8502aae4.zip
Added first part of the third day in zig
-rw-r--r--2021/03/first.zig56
1 files changed, 56 insertions, 0 deletions
diff --git a/2021/03/first.zig b/2021/03/first.zig
new file mode 100644
index 0000000..92ce535
--- /dev/null
+++ b/2021/03/first.zig
@@ -0,0 +1,56 @@
+const std = @import("std");
+
+const input = @embedFile("input");
+
+pub fn main() anyerror!void {
+ var arena = std.heap.ArenaAllocator.init(std.heap.page_allocator);
+ defer arena.deinit();
+
+ const allocator = arena.allocator();
+
+ const result = try solve(input, 12, allocator);
+ try std.io.getStdOut().writer().print("{}\n", .{result});
+}
+
+fn solve(puzzle: []const u8, width: u8, allocator: std.mem.Allocator) !u64 {
+ var it = std.mem.tokenize(u8, puzzle, "\n");
+ var bits = std.ArrayList(u64).init(allocator);
+ defer bits.deinit();
+
+ if (it.next()) |line| {
+ for (line) |c| {
+ var v: u8 = 0;
+ if (c == '1') {
+ v = 1;
+ }
+ try bits.append(v);
+ }
+ }
+ var len: usize = 1;
+ while (it.next()) |line| : (len += 1) {
+ for (line) |c, i| {
+ if (c == '1') {
+ bits.items[i] += 1;
+ }
+ }
+ }
+
+ var gamma: u64 = 0;
+ var epsilon: u64 = 0;
+ var i: usize = 0;
+ while (i < width) : (i += 1) {
+ gamma <<= 1;
+ epsilon <<= 1;
+ if (bits.items[i] > len / 2) {
+ gamma += 1;
+ } else {
+ epsilon += 1;
+ }
+ }
+ return gamma * epsilon;
+}
+
+test "solve" {
+ const example = @embedFile("example");
+ try std.testing.expectEqual(solve(example, 5, std.testing.allocator), 198);
+}