Processing math: 100%
ac-library-hs-1.2.0.0: Data structures and algorithms
Safe HaskellSafe-Inferred
LanguageGHC2021

AtCoder.Extra.IntSet

Description

A dense, fast Int set implemented as a 64-ary tree that covers an interval [0,n).

Example

Expand

Create an IntSet with capacity 10:

>>> import AtCoder.Extra.IntSet qualified as IS
>>> is <- IS.new @_ 10

insert, delete and other functions are available:

>>> IS.insert is 0
>>> IS.insert is 9
>>> IS.member is 9
True
>>> IS.delete is 0
True
>>> IS.size is
1
>>> IS.member is 1
False
>>> IS.lookupGT is 5
Just 9

Since: 1.1.0.0

Synopsis

IntSet

data IntSet s Source #

A dense, fast Int set implemented as a 64-ary tree that covers an interval [0,n).

Since: 1.1.0.0

Constructors

new :: PrimMonad m => Int -> m (IntSet (PrimState m)) Source #

O(n) Creates an IntSet for the interval [0,n).

Since: 1.1.0.0

build :: PrimMonad m => Int -> Vector Int -> m (IntSet (PrimState m)) Source #

O(n+mlogn) Creates an IntSet for the interval [0,n) with initial values.

Since: 1.1.0.0

Metadata

capacity :: IntSet s -> Int Source #

O(1) Returns the capacity n, where the interval [0,n) is covered by the set.

Since: 1.1.0.0

size :: PrimMonad m => IntSet (PrimState m) -> m Int Source #

O(1) Returns the number of elements in the set.

Since: 1.1.0.0

null :: PrimMonad m => IntSet (PrimState m) -> m Bool Source #

O(1) Returns whether the set is empty.

Since: 1.1.0.0

Lookups

member :: PrimMonad m => IntSet (PrimState m) -> Int -> m Bool Source #

O(logn) Tests whether k is in the set.

Since: 1.1.0.0

notMember :: PrimMonad m => IntSet (PrimState m) -> Int -> m Bool Source #

O(logn) Tests whether k is not in the set.

Since: 1.1.0.0

Compartive lookups

lookupGE :: PrimMonad m => IntSet (PrimState m) -> Int -> m (Maybe Int) Source #

O(logn) Looks up the smallest key k such that kk0.

Since: 1.1.0.0

lookupGT :: PrimMonad m => IntSet (PrimState m) -> Int -> m (Maybe Int) Source #

O(logn) Looks up the smallest key k such that k>k0.

Since: 1.1.0.0

lookupLE :: PrimMonad m => IntSet (PrimState m) -> Int -> m (Maybe Int) Source #

O(logn) Looks up the largest key k such that kk0.

Since: 1.1.0.0

lookupLT :: PrimMonad m => IntSet (PrimState m) -> Int -> m (Maybe Int) Source #

O(logn) Looks up the largest key k such that k<k0.

Since: 1.1.0.0

Max/Min lookups

lookupMin :: PrimMonad m => IntSet (PrimState m) -> m (Maybe Int) Source #

O(logn) Looks up the minimum key.

Since: 1.1.0.0

lookupMax :: PrimMonad m => IntSet (PrimState m) -> m (Maybe Int) Source #

O(logn) Looks up the maximum key.

Since: 1.1.0.0

Modifications

Insertions

insert :: (HasCallStack, PrimMonad m) => IntSet (PrimState m) -> Int -> m () Source #

O(logn) Inserts a key k into the set. If an entry with the same key already exists, it is overwritten.

Since: 1.1.0.0

Deletions

delete :: PrimMonad m => IntSet (PrimState m) -> Int -> m Bool Source #

O(logn) Deletes a key k from the set. Does nothing if no such key exists. Returns whether the key existed.

Since: 1.1.0.0

delete_ :: PrimMonad m => IntSet (PrimState m) -> Int -> m () Source #

O(logn) Deletes a key k from the set. Does nothing if no such key exists.

Since: 1.1.0.0

deleteMin :: PrimMonad m => IntSet (PrimState m) -> m (Maybe Int) Source #

O(logn) Deletes the minimum key from the set. Returns Nothing if the set is empty.

Since: 1.1.0.0

deleteMax :: PrimMonad m => IntSet (PrimState m) -> m (Maybe Int) Source #

O(logn) Deletes the maximum key from the set. Returns Nothing if the set is empty.

Since: 1.1.0.0

Conversions

keys :: PrimMonad m => IntSet (PrimState m) -> m (Vector Int) Source #

O(nlogn) Enumerates the keys in the map.

Since: 1.1.0.0