-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathday5.cpp
102 lines (78 loc) · 1.91 KB
/
day5.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
using namespace std;
#include <iostream>
#include <fstream>
#include <string>
#include <vector>
#include <stack>
#include "Helpers/HelperFunctions.h"
int main() {
cout << "Day 5" << endl;
ifstream file(R"(C:\Users\gwen\Documents\2_Programming\Advent of Code\Advent of Code 2022\inputs\day5.txt)");
string str;
vector<string> input;
while (getline(file, str)) {
input.push_back(str);
}
int positionBottom = 7;
int instructionStart = 10;
int amountOfStacks = 9;
vector<stack<char>> towers(amountOfStacks, stack<char>());
// auto it = input.front();
// auto itStacks = reverse_interator(it + positionBottom);
// itStacks +=
for (size_t i = positionBottom + 1; i--;) {
string info = input[i];
auto it = info.begin();
it++;
for (size_t j = 0; j < amountOfStacks; j++) {
if (*it != ' ') {
towers[j].push(*it);
}
it+= 4;
}
}
auto it = input.begin();
it += instructionStart;
// while (it != input.end()) {
//
// vector<string> out;
// tokenize(*it, ' ', out);
//
// int amount = stoi(out[1]);
// int from = stoi(out[3]) - 1;
// int to = stoi(out[5]) - 1;
//
// for (int i = 0; i < amount; i++) {
// char move = towers[from].top();
// towers[from].pop();
// towers[to].push(move);
// }
//
// it++;
// }
stack<char> temp;
while (it != input.end()) {
vector<string> out;
tokenize(*it, ' ', out);
int amount = stoi(out[1]);
int from = stoi(out[3]) - 1;
int to = stoi(out[5]) - 1;
for (int i = 0; i < amount; i++) {
char move = towers[from].top();
towers[from].pop();
temp.push(move);
}
for (int i = 0; i < amount; i++) {
char move = temp.top();
temp.pop();
towers[to].push(move);
}
it++;
}
string ans;
for (int i = 0; i < amountOfStacks; i++) {
ans.push_back(towers[i].top());
}
cout << "Answer: " << ans << endl;
return 0;
}