Files
teamnote/2025fall/source/Linear Algebra/XORBasis.cpp
2026-06-03 09:36:52 +09:00

6 lines
121 B
C++

vector<ll> basis;
void insert(ll x) {
for(auto i:basis) x = min(x, x ^ basis[i]);
if (x != 0) basis.push_back(x);
}