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
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496 | #pragma once
#include <memory_resource><--- Include file: not found. Please note: Cppcheck does not need standard library headers to get proper results.
#include <cassert><--- Include file: not found. Please note: Cppcheck does not need standard library headers to get proper results.
#include <memory><--- Include file: not found. Please note: Cppcheck does not need standard library headers to get proper results.
#include <algorithm><--- Include file: not found. Please note: Cppcheck does not need standard library headers to get proper results.
#include <vector><--- Include file: not found. Please note: Cppcheck does not need standard library headers to get proper results.
#include <type_traits><--- Include file: not found. Please note: Cppcheck does not need standard library headers to get proper results.
#include <concepts><--- Include file: not found. Please note: Cppcheck does not need standard library headers to get proper results.
#include <ranges><--- Include file: not found. Please note: Cppcheck does not need standard library headers to get proper results.
#include <bit><--- Include file: not found. Please note: Cppcheck does not need standard library headers to get proper results.
#include "snippet/iterations.hpp"
#include "internal/dev_env.hpp"
#include "internal/types.hpp"
#include "internal/iterator.hpp"
#include "internal/point_reference.hpp"
#include "internal/range_reference.hpp"
#include "internal/unconstructible.hpp"
#include "data_structure/internal/node_handler.hpp"
#include "algebraic/internal/concepts.hpp"
#include "action/base.hpp"
#include "debugger/debug.hpp"
namespace uni {
namespace internal {
namespace dynamic_segment_tree_impl {
// Thanks to: atcoder::segtree
template<algebraic::internal::monoid Monoid, class NodeHandler>
struct core {
using size_type = internal::size_t;
using operand = Monoid;
struct node_type;
using node_handler = NodeHandler::template handler<node_type>;
using allocator_type = typename node_handler::allocator_type;
using node_pointer = typename node_handler::node_pointer;
protected:
[[no_unique_address]] node_handler _node_handler;
public:
explicit core(const allocator_type& allocator = allocator_type()) noexcept(NO_EXCEPT) : _node_handler(allocator) {}
core(const core&, const allocator_type& allocator) noexcept(NO_EXCEPT) : _node_handler(allocator) {}
core(core&&, const allocator_type& allocator) noexcept(NO_EXCEPT) : _node_handler(allocator) {}
struct node_type {
size_type index;
operand val, acc;
node_pointer left = node_handler::nil, right = node_handler::nil;
node_type() noexcept = default;
node_type(const size_type _index, const operand& _val) noexcept(NO_EXCEPT)
: index(_index), val(_val), acc(_val)
{}
};
protected:
inline void pull(const node_pointer& tree) const noexcept(NO_EXCEPT) {
tree->acc = tree->left->acc + tree->val + tree->right->acc;
}
inline void dispose(const node_pointer& tree) noexcept(NO_EXCEPT) {
if(this->_node_handler.disposable(tree)) {
this->dispose(tree->left);
this->dispose(tree->right);
this->_node_handler.dispose(tree);
}
}
public:
template<std::random_access_iterator I>
node_pointer build(const size_type lower, const size_type upper, const size_type l, const size_type r, I first) noexcept(NO_EXCEPT) {
const size_type middle = (lower + upper) >> 1;
const auto itr = std::ranges::next(first, middle);
if(middle < l || r <= middle) return node_handler::nil;
node_pointer node = this->_node_handler.create(middle, *itr);
node->left = this->build(lower, middle, l, middle, first);
node->right = this->build(middle, upper, middle + 1, r, first);
this->pull(node);
return node;
}
template<std::random_access_iterator I, std::sentinel_for<I> S>
node_pointer build(I first, S last) noexcept(NO_EXCEPT) {
const size_type size = std::ranges::distance(first, last);
return this->build(0, size, 0, size, first);
}
void set(node_pointer& tree, const size_type lower, const size_type upper, size_type pos, operand val) noexcept(NO_EXCEPT) {
if(tree == node_handler::nil) {
tree = this->_node_handler.create(pos, val);
return;
}
tree = this->_node_handler.clone(tree);
if(tree->index == pos) {
tree->val = val;
this->pull(tree);
return;
}
const size_type middle = (lower + upper) >> 1;
if(pos < middle) {
if(tree->index < pos) std::swap(tree->index, pos), std::swap(tree->val, val);
this->set(tree->left, lower, middle, pos, val);
}
else {
if(pos < tree->index) std::swap(tree->index, pos), std::swap(tree->val, val);
this->set(tree->right, middle, upper, pos, val);
}
this->pull(tree);
}
operand get(const node_pointer& tree, const size_type lower, const size_type upper, const size_type pos) const noexcept(NO_EXCEPT) {
if(tree == node_handler::nil) return {};
if(tree->index == pos) return tree->val;
const size_type middle = (lower + upper) >> 1;
if(pos < middle) return this->get(tree->left, lower, middle, pos);
else return this->get(tree->right, middle, upper, pos);
}
operand fold(const node_pointer& tree, const size_type lower, const size_type upper, const size_type l, const size_type r) const noexcept(NO_EXCEPT) {
if(tree == node_handler::nil || upper <= l || r <= lower) return {};
if(l <= lower && upper <= r) return tree->acc;
const size_type middle = (lower + upper) >> 1;
operand val = this->fold(tree->left, lower, middle, l, r);
if(l <= tree->index && tree->index < r) val = val + tree->val;
return val + this->fold(tree->right, middle, upper, l, r);
}
void clear(const node_pointer& tree, const size_type lower, const size_type upper, const size_type l, const size_type r) const noexcept(NO_EXCEPT) {
if(tree == node_handler::nil || upper <= l || r <= lower) return;
if(l <= lower && upper <= r) {
this->dispose(tree);
tree = node_handler::nil;
return;
}
const size_type middle = (lower + upper) >> 1;
this->clear(tree->left, lower, middle, l, r);
this->clear(tree->right, middle, upper, l, r);
this->pull(tree);
}
template<class F>
size_type max_right(const node_pointer& tree, const size_type lower, const size_type upper, const size_type l, F&& f, operand& acc) const {
if(tree == node_handler::nil || upper <= l) return -1;
if(f(acc + tree->acc)) {
acc = acc + tree->acc;
return -1;
}
const size_type middle = (lower + upper) >> 1;
const size_type res = this->max_right(tree->left, lower, middle, l, f, acc);
if(res != -1) return res;<--- Condition 'res!=-1' is always true
if(l <= tree->index && !f(acc = acc + tree->val)) return tree->index;
return this->max_right(tree->right, middle, upper, l, std::forward<F>(f), acc);
}
template<class F>
size_type min_left(const node_pointer& tree, const size_type lower, const size_type upper, const size_type r, F&& f, operand& acc) const {
if(tree == node_handler::nil || r <= lower) return 0;
if(f(tree->acc + acc)) {
acc = tree->acc + acc;
return 0;
}
const size_type middle = (lower + upper) >> 1;
const size_type res = this->min_left(tree->right, middle, upper, r, f, acc);
if(res != 0) return res;
if(tree->index < r && !f(acc = tree->val + acc)) {
return tree->index + 1;
}
return this->min_left(tree->left, lower, middle, r, std::forward<F>(f), acc);
}
public:
debugger::debug_t dump_rich(const node_pointer& tree, const std::string prefix = " ", const int dir = 0) const {<--- Function parameter 'prefix' should be passed by const reference.
if(!tree || tree == node_handler::nil) return prefix + "\n";
const auto left = this->dump_rich(tree->left, prefix + (dir == 1 ? "| " : " "), -1);
const auto here = prefix + "--+ " + debugger::dump(tree->index) + " : " + debugger::dump(tree->val) + "\n";
const auto right = this->dump_rich(tree->right, prefix + (dir == -1 ? "| " : " "), 1);
return left + here + right;
}
debugger::debug_t _debug(const node_pointer tree) const {
if(!tree || tree == node_handler::nil) return "";
return
"(" +
this->_debug(tree->left) + " " +
debugger::dump(tree->index) + " : " + debugger::dump(tree->val) +
this->_debug(tree->right) +
")";
}
};
} // namespace dynamic_segment_tree_impl
} // namespace internal
template<class T, class = node_handlers::reusing<std::allocator<T>>>
struct dynamic_segment_tree : internal::unconstructible {};
template<actions::internal::operatable_action Action, class NodeHandler>
struct dynamic_segment_tree<Action, NodeHandler>
: private internal::dynamic_segment_tree_impl::core<typename Action::operand, NodeHandler>
{
private:
using core = typename internal::dynamic_segment_tree_impl::core<typename Action::operand, NodeHandler>;
public:
using value_type = typename core::operand;
using size_type = typename core::size_type;
using node_handler = typename core::node_handler;
using allocator_type = typename core::allocator_type;
using node_type = typename core::node_type;
using node_pointer = typename core::node_pointer;
private:
inline auto _positivize_index(const size_type p) const noexcept(NO_EXCEPT) {
return p < 0 ? this->_n + p : p;
}
size_type _n = 0;
node_pointer _root = node_handler::nil;
public:
~dynamic_segment_tree() { this->dispose(this->_root); }
dynamic_segment_tree(const allocator_type& allocator = allocator_type()) noexcept(NO_EXCEPT) : core(allocator) {};<--- Struct 'dynamic_segment_tree' has a constructor with 1 argument that is not explicit. [+]Struct 'dynamic_segment_tree' has a constructor with 1 argument that is not explicit. Such, so called "Converting constructors", should in general be explicit for type safety reasons as that prevents unintended implicit conversions.
dynamic_segment_tree(const dynamic_segment_tree& source, const allocator_type& allocator) noexcept(NO_EXCEPT)
: core(allocator), _n(source._n), _root(source._root)
{}
dynamic_segment_tree(dynamic_segment_tree&& source, const allocator_type& allocator) noexcept(NO_EXCEPT)
: core(allocator), _n(source._n), _root(source._root)
{}
explicit dynamic_segment_tree(const size_type n, const allocator_type& allocator = allocator_type()) noexcept(NO_EXCEPT)
: core(allocator), _n(n)
{}
template<std::convertible_to<value_type> T>
dynamic_segment_tree(const std::initializer_list<T>& init_list, const allocator_type& allocator = allocator_type()) noexcept(NO_EXCEPT)
: dynamic_segment_tree(init_list, allocator)
{}
template<std::input_iterator I, std::sized_sentinel_for<I> S>
dynamic_segment_tree(I first, S last, const allocator_type& allocator = allocator_type()) noexcept(NO_EXCEPT) : dynamic_segment_tree(allocator) {
this->assign(first, last);
}
template<std::ranges::input_range R>
requires (!std::same_as<std::remove_cvref_t<R>, dynamic_segment_tree>)
dynamic_segment_tree(R&& range, const allocator_type& allocator = allocator_type()) noexcept(NO_EXCEPT)<--- Struct 'dynamic_segment_tree' has a constructor with 1 argument that is not explicit. [+]Struct 'dynamic_segment_tree' has a constructor with 1 argument that is not explicit. Such, so called "Converting constructors", should in general be explicit for type safety reasons as that prevents unintended implicit conversions.
: dynamic_segment_tree(ALL(range), allocator)
{}
inline auto clone() const noexcept(NO_EXCEPT) { return *this; }
inline auto size() const noexcept(NO_EXCEPT) { return this->_n; }
inline auto& clear() noexcept(NO_EXCEPT) {
this->dispose(this->_root);
this->_n = 0;
this->_root = node_handler::nil;
return *this;
}
template<std::convertible_to<value_type> T>
inline auto& assign(const std::initializer_list<T>& init_list) noexcept(NO_EXCEPT) { return this->assign(init_list); }
template<std::input_iterator I, std::sized_sentinel_for<I> S>
inline auto& assign(I first, S last) noexcept(NO_EXCEPT) {
this->_n = std::ranges::distance(first, last);
this->_root = this->build(first, last);
return *this;
}
template<std::ranges::input_range R>
inline auto& assign(R&& range) noexcept(NO_EXCEPT) { return this->assign(ALL(range)); }
inline auto& set(const size_type pos, value_type val) noexcept(NO_EXCEPT) {
assert(pos < this->_n);
this->core::set(this->_root, 0, this->_n, pos, val);
return *this;
}
inline auto get(const size_type pos) const noexcept(NO_EXCEPT) {
assert(pos < this->_n);
return this->core::get(this->_root, 0, this->_n, pos);
}
inline auto& add(const size_type pos, const value_type& val) noexcept(NO_EXCEPT) {
assert(0 <= pos && pos < this->_n);
this->set(pos, this->get(pos) + val);
return *this;
}
inline auto fold(const size_type l, const size_type r) const noexcept(NO_EXCEPT) {
assert(0 <= l && l <= r && r <= this->_n);
return this->core::fold(this->_root, 0, this->_n, l, r);
}
inline auto fold() const noexcept(NO_EXCEPT) { return this->_root->acc; }
inline auto& clear(const size_type l, const size_type r) noexcept(NO_EXCEPT) {
assert(0 <= l && l <= r && r <= this->_n);
this->core::clear(this->_root, 0, this->_n, l, r);
return *this;
}
template<bool (*f)(value_type)>
inline auto max_right(const size_type l) const noexcept(NO_EXCEPT) {
return this->max_right(l, [](const value_type& val) { return f(val); });
}
template<class F>
inline auto max_right(const size_type l, const F &f) const noexcept(NO_EXCEPT) {
assert(0 <= l && l <= this->_n);
value_type acc;
assert(f(acc));
const auto res = this->core::max_right(this->_root, 0, this->_n, l, f, acc);
return res == -1 ? this->_n : res;
}
template<bool (*f)(value_type)>
inline auto min_left(const size_type r) const noexcept(NO_EXCEPT) {
return this->min_left(r, [](const value_type& val) noexcept(NO_EXCEPT) { return f(val); });
}
template<class F>
inline auto min_left(const size_type r, const F &f) const noexcept(NO_EXCEPT) {
assert(0 <= r && r <= this->_n);
value_type acc;
assert(f(acc));
return this->core::min_left(this->_root, 0, this->_n, r, f, acc);
}
struct point_reference : internal::point_reference<dynamic_segment_tree> {
point_reference(dynamic_segment_tree *const super, const size_type p) noexcept(NO_EXCEPT)
: internal::point_reference<dynamic_segment_tree>(super, super->_positivize_index(p))
{
assert(0 <= this->_pos && this->_pos < this->_super->_n);
}
inline operator value_type() const noexcept(NO_EXCEPT) { return this->_super->get(this->_pos); }
inline auto val() const noexcept(NO_EXCEPT) { return this->_super->get(this->_pos); }
inline auto& operator=(const value_type& v) noexcept(NO_EXCEPT) {
this->_super->set(this->_pos, v);
return *this;
}
inline auto& operator+=(const value_type& v) noexcept(NO_EXCEPT) {
this->_super->add(this->_pos, v);
return *this;
}
};
struct range_reference : internal::range_reference<dynamic_segment_tree> {
range_reference(dynamic_segment_tree *const super, const size_type l, const size_type r) noexcept(NO_EXCEPT)
: internal::range_reference<dynamic_segment_tree>(super, super->_positivize_index(l), super->_positivize_index(r))
{
assert(0 <= this->_begin && this->_begin <= this->_end && this->_end <= this->_super->_n);
}
inline auto fold() noexcept(NO_EXCEPT) {
return this->_super->fold(this->_begin, this->_end);
}
};
inline auto operator[](const size_type p) noexcept(NO_EXCEPT) { return point_reference(this, p); }
inline auto operator()(const size_type l, const size_type r) noexcept(NO_EXCEPT) { return range_reference(this, l, r); }
public:
struct iterator;
protected:
using iterator_interface = internal::container_iterator_interface<value_type, const dynamic_segment_tree, iterator>;
public:
struct iterator : iterator_interface {
using iterator_interface::iterator_interface;
};
inline auto begin() const noexcept(NO_EXCEPT) { return iterator(this, 0); }
inline auto end() const noexcept(NO_EXCEPT) { return iterator(this, this->_n); }
inline auto rbegin() const noexcept(NO_EXCEPT) { return std::make_reverse_iterator(this->end()); }
inline auto rend() const noexcept(NO_EXCEPT) { return std::make_reverse_iterator(this->begin()); }
using core::dump_rich;
using core::_debug;
debugger::debug_t dump_rich(const std::string prefix = " ") const {<--- Function parameter 'prefix' should be passed by const reference.
return "\n" + this->dump_rich(this->_root, prefix);
}
debugger::debug_t _debug() const {
return "[ " + this->_debug(this->_root) + " ]";
}
};
template<class Action, class Allocator = std::allocator<Action>>
using persistent_dynamic_segment_tree = dynamic_segment_tree<Action, node_handlers::cloneable<Allocator>>;
namespace pmr {
template<class Action>
using dynamic_segment_tree = uni::dynamic_segment_tree<Action, std::pmr::polymorphic_allocator<Action>>;
template<class Action>
using persistent_dynamic_segment_tree = uni::persistent_dynamic_segment_tree<Action, std::pmr::polymorphic_allocator<Action>>;
}; // namespace pmr
} // namespace uni
|