-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathshared.h
394 lines (339 loc) · 10.6 KB
/
shared.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
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
#ifndef SHARED_H
#define SHARED_H
#include <QJsonArray>
#include <map>
#include <memory>
#include <ratio>
#include <vector>
#include <tuple>
#ifdef ANDROID
#define _Mem_fn __mem_fn
#endif
template <typename T,
typename TIter = decltype(std::begin(std::declval<T>())),
typename = decltype(std::end(std::declval<T>()))>
constexpr auto enumerate(T && iterable)
{
struct iterator
{
size_t i;
TIter iter;
bool operator != (const iterator & other) const { return iter != other.iter; }
void operator ++ () { ++i; ++iter; }
auto operator * () const { return std::tie(i, *iter); }
};
struct iterable_wrapper
{
T iterable; // NOLINT
auto begin() { return iterator{ 0, std::begin(iterable) }; }
auto end() { return iterator{ 0, std::end(iterable) }; }
};
return iterable_wrapper{ std::forward<T>(iterable) };
}
using std::shared_ptr;
using std::make_shared;
#ifdef __wasm__
#define _Mem_fn __mem_fn
#endif
struct Points {
long points;
explicit constexpr Points(long x)
: points(x) { }
Points& operator+=(Points b) { points += b.points; return *this; }
Points& operator-=(Points b) { points -= b.points; return *this; }
Points& operator*=(Points b) { points *= b.points; return *this; }
Points& operator/=(Points b) { points /= b.points; return *this; }
Points& operator%=(Points b) { points %= b.points; return *this; }
bool Min(const Points& p) const { return points < p.points ? points : p.points; }
bool Max(const Points& p) const { return p.Min(*this); }
};
inline constexpr auto operator"" _cp(unsigned long long p) { return Points{ (long) p }; }
inline Points operator*(long a, Points b) { return Points(a * b.points); }
inline Points operator*(Points a, long b) { return Points(a.points * b); }
inline Points operator*(Points a, Points b) { return Points(a.points * b.points); }
inline Points operator/(long a, Points b) { return Points(a / b.points); }
inline Points operator/(Points a, long b) { return Points(a.points / b); }
inline Points operator/(Points a, Points b) { return Points(a.points / b.points); }
inline Points operator%(long a, Points b) { return Points(a / b.points); }
inline Points operator%(Points a, long b) { return Points(a.points / b); }
inline Points operator%(Points a, Points b) { return Points(a.points / b.points); }
inline Points operator+(long a, Points b) { return Points(a + b.points); }
inline Points operator+(Points a, long b) { return Points(a.points + b); }
inline Points operator+(Points a, Points b) { return Points(a.points + b.points); }
inline Points operator-(long a, Points b) { return Points(a - b.points); }
inline Points operator-(Points a, long b) { return Points(a.points - b); }
inline Points operator-(Points a, Points b) { return Points(a.points - b.points); }
inline bool operator<(long a, Points b) { return a < b.points; }
inline bool operator<(Points a, long b) { return a.points < b; }
inline bool operator<(Points a, Points b) { return a.points < b.points; }
inline bool operator<=(long a, Points b) { return a <= b.points; }
inline bool operator<=(Points a, long b) { return a.points <= b; }
inline bool operator<=(Points a, Points b) { return a.points <= b.points; }
inline bool operator==(long a, Points b) { return a == b.points; }
inline bool operator==(Points a, long b) { return a.points == b; }
inline bool operator==(Points a, Points b) { return a.points == b.points; }
inline bool operator>(long a, Points b) { return a > b.points; }
inline bool operator>(Points a, long b) { return a.points > b; }
inline bool operator>(Points a, Points b) { return a.points > b.points; }
inline bool operator>=(long a, Points b) { return a >= b.points; }
inline bool operator>=(Points a, long b) { return a.points >= b; }
inline bool operator>=(Points a, Points b) { return a.points >= b.points; }
class At {
private:
int _x = 0;
int _y = 0;
public:
At() { }
At(int x, int y)
: _x(x)
, _y(y) { }
At(const At& a)
: _x(a._x)
, _y(a._y) { }
At(At&& a)
: _x(a._x)
, _y(a._y) { }
virtual ~At() { }
At& operator=(const At& a) {
if (this != &a) {
_x = a._x;
_y = a._y;
}
return *this;
}
At& operator=(At&& a) {
_x = a._x;
_y = a._y;
return *this;
}
int x() { return _x; }
int y() { return _y; }
};
class Size {
private:
int _l;
int _h;
public:
Size(int l = -1, int h = -1)
: _l(l)
, _h(h) { }
Size(const Size& a)
: _l(a._l)
, _h(a._h) { }
Size(Size&& a)
: _l(a._l)
, _h(a._h) { }
virtual ~Size() { }
Size& operator=(const Size& s) {
if (this != &s) {
_l = s._l;
_h = s._h;
}
return *this;
}
Size& operator=(Size&& s) {
_l = s._l;
_h = s._h;
return *this;
}
int l() { return _l; }
int h() { return _h; }
};
constexpr int Hundreds = 100;
constexpr double Half = 0.5;
struct Coins {
private:
long coins = 0;
public:
explicit constexpr Coins(long x)
: coins(x) { }
Coins(QJsonValue& jv):
coins(jv.toInt(0)) { }
Coins& operator+=(Coins b) {
coins += b.coins;
return *this;
}
Coins& operator*=(Coins b) {
coins *= b.coins;
return *this;
}
Coins& operator/=(Coins b) {
if (b.coins < 1) return *this;
coins /= b.coins;
return *this;
}
Coins& operator%=(Coins b) {
if (b.coins < 1) return *this;
coins %= b.coins;
return *this;
}
Coins& operator-=(Coins b) {
coins -= b.coins;
return *this;
}
Coins& operator*=(long b) {
coins *= b;
return *this;
}
Coins& operator/=(long b) {
if (b < 1) return *this;
coins /= b;
return *this;
}
Coins& operator%=(long b) {
if (b < 1) return *this;
coins %= b;
return *this;
}
Coins& operator-=(long b) {
coins -= b;
return *this;
}
bool operator==(const Coins& p) const { return coins == p.coins; }
bool operator<(const Coins& p) const { return coins < p.coins; }
bool operator!=(const Coins& p) const { return !(*this == p); }
bool operator>=(const Coins& p) const { return !(*this < p); }
bool operator>(const Coins& p) const { return (*this >= p) && (*this != p); }
bool operator<=(const Coins& p) const { return !(*this > p); }
Coins Min(const Coins& p) const { return (*this < p) ? *this : p; }
Coins Max(const Coins& p) const { return p.Min(*this); }
QString toString() const { return QString("%1").arg(coins / Hundreds); }
QJsonValue toJson() const {
QJsonValue val = (int) coins;
return val;
}
};
inline Coins operator+(long a, Coins b) {
Coins c(a);
return c += b;
}
inline Coins operator+(Coins a, long b) {
Coins c(b);
return c += a;
}
inline Coins operator+(Coins a, Coins b) {
Coins c(a);
return c += b;
}
inline Coins operator*(long a, Coins b) {
Coins c(a);
return c *= b;
}
inline Coins operator*(Coins a, long b) {
Coins c(b);
return c *= a;
}
inline Coins operator*(Coins a, Coins b) {
Coins c(a);
return c = b;
}
inline Coins operator/(long a, Coins b) {
Coins c(a);
return c /= b;
}
inline Coins operator/(Coins a, long b) {
Coins c(b);
return c /= a;
}
inline Coins operator/(Coins a, Coins b) {
Coins c(a);
return c /= b;
}
inline Coins operator%(long a, Coins b) {
Coins c(a);
return c %= b;
}
inline Coins operator%(Coins a, long b) {
Coins c(b);
return c %= a;
}
inline Coins operator%(Coins a, Coins b) {
Coins c(a);
return c %= b;
}
inline Coins operator-(long a, Coins b) {
Coins c(a);
return c -= b;
}
inline Coins operator-(Coins a, long b) {
Coins c(b);
return a -= c;
}
inline Coins operator-(Coins a, Coins b) {
Coins c(a);
return c -= b;
}
inline bool operator<(long a, Coins b) { return Coins(a) < b; }
inline bool operator<(Coins a, long b) { return a < Coins(b); }
inline bool operator<=(long a, Coins b) { return Coins(a) <= b; }
inline bool operator<=(Coins a, long b) { return a <= Coins(b); }
inline bool operator==(long a, Coins b) { return Coins(a) == b; }
inline bool operator==(Coins a, long b) { return a == Coins(b); }
inline bool operator>(long a, Coins b) { return Coins(a) > b; }
inline bool operator>(Coins a, long b) { return a > Coins(b); }
inline bool operator>=(long a, Coins b) { return Coins(a) >= b; }
inline bool operator>=(Coins a, long b) { return a >= Coins(b); }
class Denominations {
private:
std::map<QString, long> _valuesByName;
std::map<long, QString> _namesByValue;
public:
Denominations() = delete;
explicit Denominations(const std::vector<std::pair<QString, long>>& v) {
for (const auto& ref: v) {
_valuesByName[ref.first] = ref.second;
_namesByValue[ref.second] = ref.first;
}
}
long operator[](const QString& x) {
if (_valuesByName.find(x) != _valuesByName.end()) return _valuesByName[x];
return 0;
}
QString operator[](const long& x) {
if (_namesByValue.find(x) != _namesByValue.end()) return _namesByValue[x];
return 0;
}
QStringList keys() {
QStringList lst;
for (const auto& x: _valuesByName) lst << x.first;
return lst;
}
size_t size() { return _valuesByName.size(); }
};
class Cash {
private:
std::vector<Coins> _coins;
Denominations _denominations;
public:
Cash() = delete;
Cash(const Denominations& d)
: _denominations(d) {
for (size_t i = 0; i < _denominations.size(); ++i) _coins.emplace_back(Coins(0));
}
void add(Coins x, const QString& d) {
QStringList keys = _denominations.keys();
for (auto [idx, key]: enumerate(keys))
if (key == d) {
_coins[idx] += x;
return;
}
}
void spend(Coins x, const QString& d) {
QStringList keys = _denominations.keys();
for (auto [idx, key]: enumerate(keys))
if (key == d) {
_coins[idx] -= x;
return;
}
}
void minimize() {
Coins p = Coins(0);
QStringList keys = _denominations.keys();
for (auto [idx, key]: enumerate(keys)) p += _coins[idx] * _denominations[key];
for (auto i = keys.size() - 1; i >= 0; --i) {
_coins[i] = p / _denominations[keys[i]];
p %= _denominations[keys[i]];
}
}
};
#endif // SHARED_H