1
0
Fork 0

Update segtree.cc

This commit is contained in:
Ariel 2024-02-14 00:53:19 +08:00 committed by GitHub
parent 91bc014b66
commit dccd4af5a6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -1,6 +1,6 @@
template<typename T> class segtree { template<typename T> class segtree {
private: private:
using size_type = __uint64_t; using size_type = uint64_t;
T _max; T _max;
vector<T> d, b; vector<T> d, b;