blob: 905110ff72013ef568c9e37f8606e7be8c466793 (
plain)
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
|
#include <fstream>
#include <iostream>
#include <sstream>
#include <string>
#include <vector>
using namespace std;
string
read_file(string_view filename)
{
fstream input{ filename };
return { istreambuf_iterator<char>{ input }, istreambuf_iterator<char>{} };
}
inline string&
rtrim(string& s, const char* t = " \t\n\r\f\v")
{
s.erase(s.find_last_not_of(t) + 1);
return s;
}
vector<string>
split(const string& line, char sep)
{
vector<string> parts{};
stringstream input{ line };
for ( string part; getline(input, part, sep); ) {
parts.emplace_back(rtrim(part));
}
return parts;
}
unsigned int
calculate_hash(string_view str)
{
unsigned int value = 0;
for ( auto chr: str ) {
value += static_cast<unsigned char>(chr);
value *= 17;
}
return value % 256;
}
void
part1()
{
const auto line = read_file("data/day15.txt");
const auto parts = split(line, ',');
unsigned long value = 0;
for ( const auto& part: parts ) {
value += calculate_hash(part);
}
cout << value << endl;
}
int
main()
{
part1();
}
|