-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathday_25a.cpp
120 lines (110 loc) · 3.07 KB
/
day_25a.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
#include <algorithm>
#include <array>
#include <fstream>
#include <iostream>
#include <limits>
#include <queue>
#include <string>
#include <unordered_set>
#include <unordered_map>
#include <vector>
// TODO: Clean up and optimize
// Also, use a better method
std::vector<long long> powers_5{1};
long long convert_snafu_to_b10(const std::string& n) {
long long ans = 0;
while (n.size() > powers_5.size()) {
powers_5.push_back(5 * powers_5.back());
}
for (int i = n.size()-1; i >= 0; i--) {
const auto multiplier = powers_5[n.size() - i - 1];
if (n[i] == '=') {
ans += -2 * multiplier;
}
else if (n[i] == '-') {
ans += -1 * multiplier;
}
else if (n[i] == '0') {
ans += 0;
}
else if (n[i] == '1') {
ans += 1 * multiplier;
}
else if (n[i] == '2') {
ans += 2 * multiplier;
} else {
std::cout << "This should not happen" << '\n';
exit(0);
}
}
return ans;
}
// long long too small to contain rep in numbers
std::string convert_b10_to_b5(long long n) {
std::string ans;
while (n > 0) {
const auto rem = n % 5;
ans.push_back(rem + '0');
n = n / 5;
}
std::reverse(std::begin(ans), std::end(ans));
return ans;
}
std::string convert_b5_to_snafu(std::string n) {
std::string ans;
for (int i = n.size() -1; i >= 0; i-- ) {
// std::cout << n.substr(0, i+1) << '\n';
const auto rem = (n[i] - '0') % 5;
if (rem == 0 || rem == 1 || rem == 2) {
ans.push_back(rem + '0');
} else if (rem == 3) {
ans.push_back('=');
if (i != 0) {
n[i-1] += 1;
} else {
n = "1";
}
} else {
ans.push_back('-');
if (i != 0) {
n[i-1] += 1;
} else {
n = "1";
}
}
auto j = i - 1;
while(j >=0 && n[j] == '5') {
// std::cout << "Carried, so becomes: << n << '\n';
n[j] = '0';
if (j >= 1) {
n[j-1] += 1;
} else {
n = "1" + n;
n[1] = '0';
}
j--;
}
// std::cout << "End: " << n.substr(0, i+1) << '\n';
}
std::reverse(std::begin(ans), std::end(ans));
return ans;
}
int main(int argc, char * argv[]) {
std::string input = "../input/day_25_input";
if (argc > 1) {
input = argv[1];
}
std::string line;
std::fstream file(input);
std::vector<std::string> numbers;
while(std::getline(file, line)) {
numbers.push_back(line);
}
long long total = 0;
for (const auto& snafu : numbers) {
total += convert_snafu_to_b10(snafu);
}
// std::cout << total << '\n';
std::cout << convert_b5_to_snafu(convert_b10_to_b5(total)) << '\n';
return 0;
}