Skip to content

Commit fcfed9d

Browse files
committed
some fixes
1 parent 5a1b25d commit fcfed9d

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

library/math/matrix_related/xor_basis_ordered.hpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@
66
//! basis_ordered<ll> b2;
77
//! basis_ordered<bitset<lg>> b3;
88
//! @endcode
9+
//! @time O(lg)
10+
//! @space O(lg)
911
const int lg = 60;
1012
template<class T> struct basis_ordered {
1113
T b[lg]{};

library/math/matrix_related/xor_basis_unordered_intersection.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
#pragma once
22
#include "xor_basis_unordered.hpp"
33
//! https://github.com/suisen-cp/cp-library-cpp/blob/main/library/linear_algebra/xor_base.hpp
4-
//! @time O(32^2) or O(64^2);
5-
//! @space O(32) or O(64)
4+
//! @time O(32^2)
5+
//! @space O(32)
66
basis intersection(const basis& u, const basis& v) {
77
vector<pii> w(sz(u.b));
88
rep(i, 0, sz(w)) w[i] = {u.b[i], u.b[i]};

0 commit comments

Comments
 (0)