-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathday1.cpp
More file actions
82 lines (65 loc) · 1.27 KB
/
day1.cpp
File metadata and controls
82 lines (65 loc) · 1.27 KB
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
#include <iostream>
#include <vector>
#include <fstream>
using namespace std;
int mainPart1() {
ios_base::sync_with_stdio(false);
cin.tie(NULL);
ifstream infile("inputs/day1.txt");
if (!infile.is_open()) {
return -1;
}
int curr = 50;
int sol = 0;
string in;
while (infile >> in) {
char dir = in[0];
int mag = stoi(in.substr(1, in.size() - 1));
if (dir == 'L') {
curr = (curr - mag + 100) % 100;
} else {
curr = (curr + mag) % 100;
}
if (!curr) {
sol++;
}
}
cout << "Solution: " << sol << endl;
return 0;
}
int mainPart2() {
ios_base::sync_with_stdio(false);
cin.tie(NULL);
ifstream infile("inputs/day1.txt");
if (!infile.is_open()) {
return -1;
}
int curr = 50;
int sol = 0;
string in;
while (infile >> in) {
char dir = in[0];
int mag = stoi(in.substr(1, in.size() - 1));
if (dir == 'L') {
int temp = curr;
curr = (curr - mag);
if (curr <= 0) {
if (temp == 0) {
sol += (abs(curr) / 100);
} else {
sol += 1 + (abs(curr) / 100);
}
}
curr = (curr%100 + 100) % 100;
} else {
curr = (curr + mag);
if (curr >= 100) {
sol += curr / 100;
}
curr %= 100;
}
// cout << "In: " << in << " Curr: " << curr << " Sol: " << sol << endl;
}
cout << "Solution: " << sol << endl;
return 0;
}