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

AtCoder.Extra.WaveletMatrix

Description

A static Wavelet Matrix.

Notation

Let S be the set of values in your wavelet matrix. We use |S| to denote the number of distinct values contained within this set (|S|<n).

Since: 1.1.0.0

Synopsis

Wavelet Matrix

data WaveletMatrix Source #

A static Wavelet Matrix.

Since: 1.1.0.0

Constructors

WaveletMatrix 

Fields

  • rawWM :: !RawWaveletMatrix

    The internal wavelet matrix, where index compression is not automatically performed.

    Since: 1.1.0.0

  • xDictWM :: !(Vector Int)

    Index compression dictionary.

    Since: 1.1.0.0

Constructors

build :: Vector Int -> WaveletMatrix Source #

O(nlogn) Creates a WaveletMatrix from an array a.

Since: 1.1.0.0

Access (indexing)

access :: WaveletMatrix -> Int -> Maybe Int Source #

O(log|S|) Returns a[k] or Nothing if the index is out of the bounds. Try to use the original array if you can.

Since: 1.1.0.0

Rank (count)

rank Source #

Arguments

:: WaveletMatrix

A wavelet matrix

-> Int

l

-> Int

r

-> Int

y

-> Int

The number of y in [l,r).

O(log|S|) Returns the number of y in [l,r).

Since: 1.1.0.0

rankBetween Source #

Arguments

:: WaveletMatrix

A wavelet matrix

-> Int

l

-> Int

r

-> Int

y1

-> Int

y2

-> Int

The number of y in [l,r)×[y1,y2).

O(log|S|) Returns the number of y in [l,r)×[y1,y2).

Since: 1.1.0.0

Selection

Example

Expand
>>> import AtCoder.Extra.WaveletMatrix qualified as WM
>>> import Data.Vector.Unboxed qualified as VU
>>> let wm = WM.build $ VU.fromList [1,1,2,1,3]
>>> WM.select wm 1
Just 0
>>> WM.selectKth wm 2 1
Just 3
>>> WM.selectIn wm {- [l, r) -} 1 4 {- x -} 1
Just 1
>>> WM.selectKthIn wm {- [l, r) -} 1 4 {- k -} 1 {- x -} 1
Just 3

select :: WaveletMatrix -> Int -> Maybe Int Source #

O(log|S|) Returns the index of the first y in a, or Nothing if y is not found.

Since: 1.1.0.0

selectKth Source #

Arguments

:: WaveletMatrix

A wavelet matrix

-> Int

k

-> Int

y

-> Maybe Int

The index of k-th y

O(log|S|) Returns the index of the k-th occurrence (0-based) of y, or Nothing if no such occurrence exists.

Since: 1.1.0.0

selectIn Source #

Arguments

:: WaveletMatrix

A wavelet matrix

-> Int

l

-> Int

r

-> Int

y

-> Maybe Int

The index of the first y in [l,r).

O(log|S|) Given an interval [l,r), it returns the index of the first occurrence (0-based) of y in the sequence, or Nothing if no such occurrence exists.

Since: 1.1.0.0

selectKthIn Source #

Arguments

:: WaveletMatrix

A wavelet matrix

-> Int

l

-> Int

r

-> Int

k

-> Int

y

-> Maybe Int

The index of the k-th y in [l,r).

O(log|S|) Given an interval [l,r), it returns the index of the k-th occurrence (0-based) of y in the sequence, or Nothing if no such occurrence exists.

Since: 1.1.0.0

Quantile (value-ordered access)

kthLargestIn Source #

Arguments

:: WaveletMatrix

A wavelet matrix

-> Int

l

-> Int

r

-> Int

k

-> Maybe Int

k-th largest y in [l,r)

O(log|S|) Given the interval [l,r), returns the index of the k-th (0-based) largest value. Note that duplicated values are treated as distinct occurrences.

Since: 1.1.0.0

ikthLargestIn Source #

Arguments

:: WaveletMatrix

A wavelet matrix

-> Int

l

-> Int

r

-> Int

k

-> Maybe (Int, Int)

(i,y) for k-th largest y in [l,r)

O(log|S|) Given the interval [l,r), returns both the index and the value of the k-th (0-based) largest value. Note that duplicated values are treated as distinct occurrences.

Since: 1.1.0.0

kthSmallestIn Source #

Arguments

:: WaveletMatrix

A wavelet matrix

-> Int

l

-> Int

r

-> Int

k

-> Maybe Int

k-th largest y in [l,r)

O(log|S|) Given the interval [l,r), returns the index of the k-th (0-based) smallest value. Note that duplicated values are treated as distinct occurrences.

Since: 1.1.0.0

ikthSmallestIn Source #

Arguments

:: WaveletMatrix 
-> Int

l

-> Int

r

-> Int

k

-> Maybe (Int, Int)

(i,y) for k-th largest y in [l,r)

O(log|S|) Given the interval [l,r), returns both the index and the value of the k-th (0-based) smallest value. Note that duplicated values are treated as distinct occurrences.

Since: 1.1.0.0

Lookup

lookupLE Source #

Arguments

:: WaveletMatrix

A wavelet matrix

-> Int

l

-> Int

r

-> Int

y0

-> Maybe Int

Maximum y in [l,r)×(,y0]

O(log|S|) Looks up the maximum y in [l,r)×(,y0].

Since: 1.1.0.0

lookupLT Source #

Arguments

:: WaveletMatrix

A wavelet matrix

-> Int

l

-> Int

r

-> Int

y0

-> Maybe Int

Maximum y in [l,r)×(,y0)

O(log|S|) Looks up the maximum y in [l,r)×(,y0).

Since: 1.1.0.0

lookupGE Source #

Arguments

:: WaveletMatrix

A wavelet matrix

-> Int

l

-> Int

r

-> Int

y0

-> Maybe Int

Minimum y in [l,r)×[y0,).

O(log|S|) Looks up the minimum y in [l,r)×[y0,).

Since: 1.1.0.0

lookupGT Source #

Arguments

:: WaveletMatrix

A wavelet matrix

-> Int

l

-> Int

r

-> Int

y0

-> Maybe Int

Minimum y in [l,r)×(y0,)

O(log|S|) Looks up the minimum y in [l,r)×(y0,).

Since: 1.1.0.0

Conversions

assocsIn :: WaveletMatrix -> Int -> Int -> [(Int, Int)] Source #

O(min Collects (y, \mathrm{rank}(y)) in range [l, r) in ascending order of y. Note that it's only fast when the |S| is very small.

Since: 1.1.0.0

descAssocsIn :: WaveletMatrix -> Int -> Int -> [(Int, Int)] Source #

O(\min(|S|, L) \log |S|) Collects (y, \mathrm{rank}(y)) in range [l, r) in descending order of y. Note that it's only fast when the |S| is very small.

Since: 1.1.0.0