Struct nekolib::ds::UnionFind

source ·
pub struct UnionFind { /* private fields */ }
Expand description

union-find。

Complexity

演算時間計算量
newΘ(n)\Theta(n)
uniteamortized O(α(n))O(\alpha(n))
repramortized O(α(n))O(\alpha(n))
equivamortized O(α(n))O(\alpha(n))
countamortized O(α(n))O(\alpha(n))
subsetΘ(n)\Theta(n)

より tight には、nn 要素 mm クエリのとき、O(mα(m,n)+n)O(m\cdot\alpha(m, n)+n) 時間となる。 ただし、α(m,n)\alpha(m, n) は次のように定義される。 α(m,n)=min{kNJk(log2(n))1+m/n}. \alpha(m, n) = \min\{k\in\mathbb{N}\mid J_k(\lfloor\log_2(n)\rfloor)\le 1+m/n\}. ここで、g=(log2g)g^\diamond = (\lceil{\log_2}\rceil\circ g)^\star とし、J0(r)=(r1)/2J_0(r) = \lceil(r-1)/2\rceil, Jk(r)=Jk1(r)J_k(r)=J_{k-1}^\diamond(r) (k>0k\gt 0) である。 より直感的には、J0k many s(log2(n)){\underbrace{J_0^{\diamond\diamond\cdots\diamond}}_{k\text{ many }\diamond{\text{s}}}}(\lfloor\log_2(n)\rfloor)1+m/n1+m/n 以下になる最小の kkα(m,n)\alpha(m, n) である。

Complexity analysis

参考文献ふたつめの PDF の概略を書く。todo!()

これらより、f(m,n,r)(α(m,n)+2)m+2nf(m, n, r)\le (\alpha(m, n)+2)\cdot m+2n が言える。

Note: α(m,n)=min{kNαk(n)3}\alpha'(m, n) = \min\{k\in\mathbb{N}\mid \alpha_k(n)\le 3\} として α(m,n)=O(α(m,n))\alpha(m, n) = O(\alpha'(m, n)) である。

Examples

use nekolib::traits::DisjointSet;
use nekolib::ds::UnionFind;

let mut uf = UnionFind::new(4);
assert!(!uf.equiv(0, 2));
uf.unite(0, 1);
uf.unite(1, 2);
assert!(uf.equiv(0, 2));
assert!(!uf.equiv(0, 3));
assert_eq!(uf.count(0), 3);

References

Trait Implementations§

source§

impl Clone for UnionFind

source§

fn clone(&self) -> UnionFind

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl DisjointSet for UnionFind

source§

fn new(n: usize) -> Self

集合族を {{0},{1},,{n1}}\{\{0\}, \{1\}, \dots, \{n-1\}\} で初期化する。
source§

fn len(&self) -> usize

集合族全体に含まれる要素数 nn を返す。
source§

fn unite(&mut self, u: usize, v: usize) -> bool

uu を含む集合と vv を含む集合を併合する。 集合族に変化があれば true を返す。 uuvv が元々同じ集合に含まれていれば false を返す。
source§

fn repr(&self, u: usize) -> usize

uu を含む集合の代表元を返す。
source§

fn count(&self, u: usize) -> usize

uu を含む集合の要素数を返す。
source§

fn is_empty(&self) -> bool

集合族が空であれば true を返す。
source§

fn equiv(&self, u: usize, v: usize) -> bool

uuvv が同じ集合に含まれていれば true を返す。
source§

fn subset(&self, u: usize) -> Vec<usize>

uu を含む集合の要素を列挙する。
source§

fn partition(&self) -> Vec<Vec<usize>>

分割を返す。 Read more

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for Twhere T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

impl<V, T> VZip<V> for Twhere V: MultiLane<T>,

§

fn vzip(self) -> V