aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjacopograndi <jacopo.grandi@outlook.it>2022-01-06 16:00:32 +0100
committerjacopograndi <jacopo.grandi@outlook.it>2022-01-06 16:00:32 +0100
commitd036b3714e7bbb0825b25d28ed3a6a947085e0d7 (patch)
tree9b67aa4ea41ed87b8085860f01545aa25a9ce57a
parent33c54ee847b571a4b465a31f70dbf816e8f20fd5 (diff)
day06
-rwxr-xr-xday06/day06bin0 -> 76512 bytes
-rw-r--r--day06/day06.cpp47
-rw-r--r--day06/day06_input.txt1
-rw-r--r--day06/day06_input_ez.txt1
-rw-r--r--day06/makefile2
5 files changed, 51 insertions, 0 deletions
diff --git a/day06/day06 b/day06/day06
new file mode 100755
index 0000000..ccf553a
--- /dev/null
+++ b/day06/day06
Binary files differ
diff --git a/day06/day06.cpp b/day06/day06.cpp
new file mode 100644
index 0000000..38d602b
--- /dev/null
+++ b/day06/day06.cpp
@@ -0,0 +1,47 @@
+#include <iostream>
+#include <fstream>
+#include <string>
+#include <vector>
+
+#include "../utils.h"
+
+long sum (std::vector<long> vec) {
+ long s = 0; for (long v : vec) s += v; return s;
+}
+
+int main (int argc, char *argv[]) {
+ std::string raw;
+ std::getline(std::ifstream(argv[1]), raw, '\0');
+ std::vector<std::string> strfish;
+ split(strfish, raw, ",");
+
+ std::vector<long> fish;
+ for (int i=0; i<9; i++) { fish.push_back(0); }
+ for (std::string str : strfish) fish[std::stoi(str)] += 1;
+
+ int days = 80;
+ if (argc > 2) days = std::stoi(std::string(argv[2]));
+ for (int i=0; i<days; i++) {
+ long born = fish[0];
+ fish[0] = 0;
+ for (int j=1; j<9; j++) {
+ fish[j-1] += fish[j];
+ fish[j] = 0;
+ }
+ fish[6] += born;
+ fish[8] = born;
+
+ if (argc > 3 && std::string(argv[3]) == "-w") {
+ std::cout << "day " << i+1 << "/" << days
+ << " current fish: " << sum(fish) << std::endl;
+ }
+ if (argc > 3 && std::string(argv[3]) == "-v") {
+ std::cout << "day " << i+1 << ": ";
+ for (auto f : fish) std::cout << f << ",";
+ std::cout << std::endl;
+ }
+ }
+
+ std::cout << "fish: " << sum(fish) << std::endl;
+ return 0;
+}
diff --git a/day06/day06_input.txt b/day06/day06_input.txt
new file mode 100644
index 0000000..5b38bce
--- /dev/null
+++ b/day06/day06_input.txt
@@ -0,0 +1 @@
+4,1,1,4,1,1,1,1,1,1,1,1,3,4,1,1,1,3,1,3,1,1,1,1,1,1,1,1,1,3,1,3,1,1,1,5,1,2,1,1,5,3,4,2,1,1,4,1,1,5,1,1,5,5,1,1,5,2,1,4,1,2,1,4,5,4,1,1,1,1,3,1,1,1,4,3,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,5,1,1,2,1,1,1,1,1,1,1,2,4,4,1,1,3,1,3,2,4,3,1,1,1,1,1,2,1,1,1,1,2,5,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,4,1,5,1,3,1,1,1,1,1,5,1,1,1,3,1,2,1,2,1,3,4,5,1,1,1,1,1,1,5,1,1,1,1,1,1,1,1,3,1,1,3,1,1,4,1,1,1,1,1,2,1,1,1,1,3,2,1,1,1,4,2,1,1,1,4,1,1,2,3,1,4,1,5,1,1,1,2,1,5,3,3,3,1,5,3,1,1,1,1,1,1,1,1,4,5,3,1,1,5,1,1,1,4,1,1,5,1,2,3,4,2,1,5,2,1,2,5,1,1,1,1,4,1,2,1,1,1,2,5,1,1,5,1,1,1,3,2,4,1,3,1,1,2,1,5,1,3,4,4,2,2,1,1,1,1,5,1,5,2
diff --git a/day06/day06_input_ez.txt b/day06/day06_input_ez.txt
new file mode 100644
index 0000000..55129f1
--- /dev/null
+++ b/day06/day06_input_ez.txt
@@ -0,0 +1 @@
+3,4,3,1,2
diff --git a/day06/makefile b/day06/makefile
new file mode 100644
index 0000000..2bc132f
--- /dev/null
+++ b/day06/makefile
@@ -0,0 +1,2 @@
+all day06.cpp:
+ g++ -std=c++20 -o day06 day06.cpp