-
Notifications
You must be signed in to change notification settings - Fork 0
/
Problem.h
218 lines (183 loc) · 3.22 KB
/
Problem.h
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
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
#include <string>
#include <functional>
using namespace std;
class Problem
{
public:
Problem(int number, const std::string &description);
int Number();
std::string Description();
int Answer();
int Report();
protected:
// Child classes should override
virtual int Solve() = 0;
private:
int number = 0;
string description;
int answer = 0;
};
/*
class Problem2 : public Problem
{
public:
Problem2();
string Name() { return "Problem 2";}
bool Solve();
};
class Problem3 : public Problem
{
public:
Problem3();
string Name() { return "Problem 3";}
bool Solve();
};
class Problem4 : public Problem
{
public:
Problem4();
string Name() { return "Problem 4";}
bool Solve();
};
class Problem5 : public Problem
{
public:
Problem5();
string Name() { return "Problem 5";}
bool Solve();
};
class Problem6 : public Problem
{
public:
Problem6();
string Name() { return "Problem 6";}
bool Solve();
};
class Problem7 : public Problem
{
public:
Problem7();
string Name() { return "Problem 7";}
bool Solve();
};
class Problem8 : public Problem
{
public:
Problem8();
string Name() { return "Problem 8";}
bool Solve();
};
class Problem9 : public Problem
{
public:
Problem9();
string Name() { return "Problem 9";}
bool Solve();
};
class Problem10 : public Problem
{
public:
Problem10();
string Name() { return "Problem 10";}
bool Solve();
};
class Problem11 : public Problem
{
public:
Problem11();
string Name() { return "Problem 11";}
bool Solve();
};
class Problem12 : public Problem
{
public:
Problem12();
string Name() { return "Problem 12";}
bool Solve();
};
class Problem13 : public Problem
{
public:
Problem13();
void Test();
string Name() { return "Problem 13";}
bool Solve();
};
class Problem14 : public Problem
{
public:
Problem14();
string Name() { return "Problem 14";}
bool Solve();
};
class Problem15 : public Problem
{
public:
Problem15();
string Name() { return "Problem 15";}
bool Solve();
};
class Problem16 : public Problem
{
public:
Problem16();
string Name() { return "Problem 16";}
bool Solve();
};
class Problem17 : public Problem
{
public:
Problem17();
string Name() { return "Problem 17";}
bool Solve();
};
class Problem18 : public Problem
{
public:
Problem18();
string Name() { return "Problem 18";}
bool Solve();
};
class Problem19 : public Problem
{
public:
Problem19();
string Name() { return "Problem 19"; }
bool Solve();
};
class Problem20 : public Problem
{
public:
Problem20();
string Name() { return "Problem 20";}
bool Solve();
};
class Problem21 : public Problem
{
public:
Problem21();
string Name() { return "Problem 21"; }
bool Solve();
};
class Problem22 : public Problem
{
public:
Problem22();
string Name() { return "Problem 22"; }
bool Solve();
};
class Problem23 : public Problem
{
public:
Problem23();
string Name() { return "Problem 23"; }
bool Solve();
};
class Problem67 : public Problem
{
public:
Problem67();
string Name() { return "Problem 67";}
bool Solve();
};
*/