-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathday7.cpp
175 lines (139 loc) · 3.55 KB
/
day7.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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
using namespace std;
#include <iostream>
#include <string>
#include <utility>
#include <map>
#include <vector>
#include "Helpers/HelperFunctions.h"
class Item {
protected:
string name;
int size;
Item* parent;
public:
Item(string name, int size, Item* parent) {
this->name = std::move(name);
this->size = size;
this->parent = parent;
}
virtual int getSize() {
return size;
}
virtual int getLessThan100000Sum() { return 0; }
virtual Item* getToDelete(int target) { return nullptr; }
Item* getParent() {
return parent;
}
void setParent(Item *parent) {
this->parent = parent;
}
string getName() {
return name;
}
};
class Directory : public Item {
private:
map<string, Item*> contained;
public:
Directory(string name) : Item(std::move(name), 0, nullptr) {
}
int getSize() override {
if (size == 0) {
int totalSize = 0;
for (auto &it : contained) {
totalSize += it.second->getSize();
}
size = totalSize;
}
return size;
}
int getLessThan100000Sum() override {
int sum = 0;
for (auto &it : contained) {
sum += it.second->getLessThan100000Sum();
}
int size = getSize();
if (size <= 100000) {
sum += size;
}
return sum;
}
Item* findChild(const string& name) {
return contained[name];
}
void addChild(string &name, Item *item) {
contained[name] = item;
item->setParent(this);
}
Item* getToDelete(int target) override {
Item* toDelete = nullptr;
for (auto &it : contained) {
Item* curr = it.second->getToDelete(target);
if (curr != nullptr) { // is greater than
if (toDelete == nullptr) {
toDelete = curr;
} else {
if (curr->getSize() < toDelete->getSize()) {
toDelete = curr;
}
}
}
}
if (toDelete == nullptr) {
if (getSize() >= target) {
toDelete = this;
}
} else {
if (getSize() < toDelete->getSize()) {
toDelete = this;
}
}
return toDelete;
}
};
class File : public Item {
public:
File(int size, string name) : Item(std::move(name), size, nullptr) { }
};
int main() {
cout << "Day 7" << endl;
ifstream file(R"(C:\Users\gwen\Documents\2_Programming\Advent of Code\Advent of Code 2022\inputs\day7.txt)");
string str;
Directory *root = new Directory("/");
Directory *curr = root;
while (getline(file, str)) {
if (str.find("$ cd") != string::npos) {
vector<string> out;
tokenize(str, ' ', out);
string command = out[2];
if (command == ("..")) {
if (curr->getParent() == nullptr) continue;
curr = (Directory *) (curr->getParent());
} else if (command == ("/")) {
curr = root;
} else {
curr = (Directory *) curr->findChild(command);
}
} else if (str.find("$ ls") != string::npos) {
// none
} else {
vector<string> out;
tokenize(str, ' ', out);
if (out[0] == "dir") {
if (curr->findChild(out[1]) == nullptr) {
curr->addChild(out[1], new Directory(out[1]));
}
} else {
if (curr->findChild(out[1]) == nullptr) {
curr->addChild(out[1], new File(stoi(out[0]), out[1]));
}
}
}
}
cout << "Part 1: " << root->getLessThan100000Sum() << endl;
int totalSize = root->getSize();
int requiredDelete = 30000000 - (70000000 - totalSize);
Item *selected = root->getToDelete(requiredDelete);
cout << "Part 2: " << selected->getName() << ":" << selected->getSize() << endl;
return 0;
}