aboutsummaryrefslogtreecommitdiffstats
path: root/src/01
diff options
context:
space:
mode:
authorLouis Burda <quent.burda@gmail.com>2023-04-08 12:40:30 -0400
committerLouis Burda <quent.burda@gmail.com>2023-04-09 10:21:36 -0400
commit9282e95e8844afe856ba76ceb6d2c3010df8bb1a (patch)
treee35affc89b20324371381e079f7cb5f8a06aa81b /src/01
parent2b5d4232879dc74491dabf54a0ddc958d66ebcec (diff)
downloadaoc2020-zig-master.tar.gz
aoc2020-zig-master.zip
Restructure repo and update solutions to zig 0.10.1HEADmaster
Diffstat (limited to 'src/01')
-rw-r--r--src/01/input200
-rw-r--r--src/01/main.zig72
-rw-r--r--src/01/part128
-rw-r--r--src/01/part29
4 files changed, 309 insertions, 0 deletions
diff --git a/src/01/input b/src/01/input
new file mode 100644
index 0000000..215b6f9
--- /dev/null
+++ b/src/01/input
@@ -0,0 +1,200 @@
+1650
+1174
+1156
+1874
+1958
+1918
+1980
+1588
+1863
+1656
+1843
+1738
+2001
+1883
+1941
+1602
+1881
+1927
+1284
+1474
+1942
+1992
+1925
+1990
+1831
+1907
+1914
+1815
+1921
+1589
+1224
+1148
+1223
+935
+1726
+1828
+1838
+1611
+1960
+1668
+1744
+1566
+1902
+1203
+1975
+1225
+2000
+1678
+1950
+572
+1812
+1568
+1484
+1767
+1509
+1658
+1127
+1870
+1098
+1294
+1310
+1483
+1865
+1967
+1856
+1963
+1929
+1119
+132
+1969
+1094
+1523
+1701
+1896
+1631
+1956
+1910
+1672
+1232
+1285
+1761
+1649
+1931
+1959
+1191
+1846
+1908
+1976
+1500
+1940
+1924
+1521
+1989
+1635
+1102
+1114
+1948
+2007
+1964
+1926
+1590
+1900
+1690
+1880
+1596
+1395
+1373
+1937
+1833
+1845
+1949
+1128
+1218
+1928
+1912
+1893
+1869
+960
+1813
+1645
+1490
+1318
+1934
+1259
+2005
+1522
+1270
+1089
+1674
+1997
+1112
+1954
+1769
+1829
+1814
+1922
+1904
+1894
+1595
+1103
+237
+1943
+1364
+1906
+1971
+1998
+1461
+1606
+1911
+1545
+1952
+1917
+1582
+1994
+1946
+1935
+1844
+1938
+1633
+2004
+1132
+1530
+1915
+1982
+1871
+1852
+1613
+1476
+1216
+1834
+1939
+409
+1895
+1120
+1194
+1135
+1899
+1901
+1439
+485
+1855
+1136
+200
+1887
+250
+1930
+1506
+1945
+1988
+1170
+1575
+1872
+1261
+1137
+1978
+1537
+1897
+1837
+1753
+1913
diff --git a/src/01/main.zig b/src/01/main.zig
new file mode 100644
index 0000000..8111960
--- /dev/null
+++ b/src/01/main.zig
@@ -0,0 +1,72 @@
+const std = @import("std");
+const aoc = @import("aoc");
+
+const Parts = struct { a: u32, b: u32 };
+
+fn findparts(intlist: *const std.ArrayList(u32), sum: u32) ?Parts {
+ var start: usize = 0;
+ const items = intlist.items;
+ var end: usize = items.len - 1;
+ while (start != end) {
+ const csum = items[start] + items[end];
+ if (csum == sum) {
+ return Parts{ .a = items[start], .b = items[end] };
+ } else if (csum > sum) {
+ end -= 1;
+ } else {
+ start += 1;
+ }
+ }
+ return null;
+}
+
+fn parse(allocator: std.mem.Allocator, input: []u8) !std.ArrayList(u32) {
+ var intlist = std.ArrayList(u32).init(allocator);
+ errdefer intlist.deinit();
+
+ var it = std.mem.tokenize(u8, input, "\n");
+ while (it.next()) |line| {
+ try intlist.append(try std.fmt.parseInt(u32, line, 10));
+ }
+
+ return intlist;
+}
+
+fn part1(allocator: std.mem.Allocator, input: []u8, args: [][]u8) !?[]u8 {
+ _ = args;
+
+ const intlist = try parse(allocator, input);
+ defer intlist.deinit();
+
+ std.sort.sort(u32, intlist.items, {}, comptime std.sort.asc(u32));
+
+ if (findparts(&intlist, 2020)) |parts| {
+ return try std.fmt.allocPrint(allocator, "{d}", .{parts.a * parts.b});
+ }
+
+ return null;
+}
+
+fn part2(allocator: std.mem.Allocator, input: []u8, args: [][]u8) !?[]u8 {
+ _ = args;
+
+ const intlist = try parse(allocator, input);
+ defer intlist.deinit();
+
+ std.sort.sort(u32, intlist.items, {}, comptime std.sort.asc(u32));
+
+ const target: u16 = 2020;
+ var third: u32 = 0;
+ while (third < intlist.items.len) : (third += 1) {
+ const tmp = intlist.items[third];
+ intlist.items[third] = target + 1;
+ if (findparts(&intlist, target - tmp)) |parts| {
+ return try std.fmt.allocPrint(allocator, "{d}", .{parts.a * parts.b * tmp});
+ }
+ intlist.items[third] = tmp;
+ }
+
+ return null;
+}
+
+pub const main = aoc.main(part1, part2, .{ "658899", "155806250" });
diff --git a/src/01/part1 b/src/01/part1
new file mode 100644
index 0000000..0452569
--- /dev/null
+++ b/src/01/part1
@@ -0,0 +1,28 @@
+--- Day 1: Report Repair ---
+
+After saving Christmas five years in a row, you've decided to take a vacation at a nice resort on a tropical island. Surely, Christmas will go on without you.
+
+The tropical island has its own currency and is entirely cash-only. The gold coins used there have a little picture of a starfish; the locals just call them stars. None of the currency exchanges seem to have heard of them, but somehow, you'll need to find fifty of these coins by the time you arrive so you can pay the deposit on your room.
+
+To save your vacation, you need to get all fifty stars by December 25th.
+
+Collect stars by solving puzzles. Two puzzles will be made available on each day in the Advent calendar; the second puzzle is unlocked when you complete the first. Each puzzle grants one star. Good luck!
+
+Before you leave, the Elves in accounting just need you to fix your expense report (your puzzle input); apparently, something isn't quite adding up.
+
+Specifically, they need you to find the two entries that sum to 2020 and then multiply those two numbers together.
+
+For example, suppose your expense report contained the following:
+
+1721
+979
+366
+299
+675
+1456
+
+In this list, the two entries that sum to 2020 are 1721 and 299. Multiplying them together produces 1721 * 299 = 514579, so the correct answer is 514579.
+
+Of course, your expense report is much larger. Find the two entries that sum to 2020; what do you get if you multiply them together?
+
+
diff --git a/src/01/part2 b/src/01/part2
new file mode 100644
index 0000000..5e5b59a
--- /dev/null
+++ b/src/01/part2
@@ -0,0 +1,9 @@
+--- Part Two ---
+
+The Elves in accounting are thankful for your help; one of them even offers you a starfish coin they had left over from a past vacation. They offer you a second one if you can find three numbers in your expense report that meet the same criteria.
+
+Using the above example again, the three entries that sum to 2020 are 979, 366, and 675. Multiplying them together produces the answer, 241861950.
+
+In your expense report, what is the product of the three entries that sum to 2020?
+
+