teamnote default

This commit is contained in:
2026-06-03 09:20:51 +09:00
commit f50ed902fe
65 changed files with 6033 additions and 0 deletions

View File

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