This documentation is automatically generated by online-judge-tools/verification-helper
This project is maintained by tsutaj
// 永続配列 (2^{LOG} 分木による実装)
// パスコピーは mutable_get で行おう!値を持ってくるだけなら get を使おう
template <typename Type, int LOG>
struct PersistentArray {
struct Node {
Type data;
Node* child[1 << LOG] = {};
Node() {}
Node(const Type& data_) : data(data_) {}
};
Node* root;
PersistentArray() : root(nullptr) {}
Type get(Node* t, int k) {
if(k == 0) return t->data;
return get(t->child[k & ((1 << LOG) - 1)], k >> LOG);
}
Type get(const int& k) {
return get(root, k);
}
pair<Node*, Type*> mutable_get(Node* t, int k) {
t = t ? new Node(*t) : new Node();
if(k == 0) return {t, &t->data};
auto p = mutable_get(t->child[k & ((1 << LOG) - 1)], k >> LOG);
t->child[k & ((1 << LOG) - 1)] = p.first;
return {t, p.second};
}
Type* mutable_get(const int& k) {
auto ret = mutable_get(root, k);
root = ret.first;
return ret.second;
}
Node* build(Node* t, const Type& data, int k) {
if(!t) t = new Node();
if(k == 0) {
t->data = data;
return t;
}
auto p = build(t->child[k & ((1 << LOG) - 1)], data, k >> LOG);
t->child[k & ((1 << LOG) - 1)] = p;
return t;
}
void build(const vector<Type>& vec) {
root = nullptr;
for(size_t i=0; i<vec.size(); i++) {
root = build(root, vec[i], i);
}
}
};
#line 1 "structure/strc_017_persistent_array.cpp"
// 永続配列 (2^{LOG} 分木による実装)
// パスコピーは mutable_get で行おう!値を持ってくるだけなら get を使おう
template <typename Type, int LOG>
struct PersistentArray {
struct Node {
Type data;
Node* child[1 << LOG] = {};
Node() {}
Node(const Type& data_) : data(data_) {}
};
Node* root;
PersistentArray() : root(nullptr) {}
Type get(Node* t, int k) {
if(k == 0) return t->data;
return get(t->child[k & ((1 << LOG) - 1)], k >> LOG);
}
Type get(const int& k) {
return get(root, k);
}
pair<Node*, Type*> mutable_get(Node* t, int k) {
t = t ? new Node(*t) : new Node();
if(k == 0) return {t, &t->data};
auto p = mutable_get(t->child[k & ((1 << LOG) - 1)], k >> LOG);
t->child[k & ((1 << LOG) - 1)] = p.first;
return {t, p.second};
}
Type* mutable_get(const int& k) {
auto ret = mutable_get(root, k);
root = ret.first;
return ret.second;
}
Node* build(Node* t, const Type& data, int k) {
if(!t) t = new Node();
if(k == 0) {
t->data = data;
return t;
}
auto p = build(t->child[k & ((1 << LOG) - 1)], data, k >> LOG);
t->child[k & ((1 << LOG) - 1)] = p;
return t;
}
void build(const vector<Type>& vec) {
root = nullptr;
for(size_t i=0; i<vec.size(); i++) {
root = build(root, vec[i], i);
}
}
};