1
0
Fork 0

Update segtreed.cc

This commit is contained in:
Ariel 2024-02-14 00:54:04 +08:00 committed by GitHub
parent dccd4af5a6
commit 4920d0b1f0
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 segtreed { template<typename T> class segtreed {
private: private:
using size_type = __uint64_t; using size_type = uint64_t;
size_type cnt, root; size_type cnt, root;
T _max; T _max;
vector<T> d, b; vector<T> d, b;