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

AtCoder.MaxFlow

Description

It solves maximum flow problem.

Example

Expand

Create a max flow graph (MfGraph):

>>> import AtCoder.MaxFlow qualified as MF
>>> g <- MF.new @_ @Int 3        --  0     1     2

Build a simple graph with addEdge g from to cap or addEdge_:

>>> MF.addEdge g 0 1 (2 :: Int)  --  0 --> 1     2
0
>>> MF.addEdge_ g 1 2 (1 :: Int) --  0 --> 1 --> 2

Augument the flow with flow. maxFlow can also be used when there's no flow limit:

>>> MF.flow g 0 2 {- flowLimit -} maxBound -- same as `MF.maxFlow g 0 2`
1

Get the minimum cut with minCut. In this case, removing the second edge makes the minimum cut (note that the edge capacity 1 = max flow):

>>> MF.minCut g 0 -- returns a Bit vector. `1` (`Bit True`) is on the `s` side.
[1,1,0]

Retrieve the edge state with getEdge. We can confirm the flow is 1:

>>> MF.getEdge g 0 -- returns (from, to, cap, flow)
(0,1,2,1)

Since: 1.0.0.0

Synopsis

Max flow graph

data MfGraph s cap Source #

Max flow graph.

Since: 1.0.0.0

Constructor

new :: (PrimMonad m, Unbox cap) => Int -> m (MfGraph (PrimState m) cap) Source #

Creates a graph of n vertices and 0 edges. cap is the type of the capacity.

Constraints

  • 0n

Complexity

  • O(n)

Since: 1.0.0.0

Graph building

addEdge Source #

Arguments

:: (HasCallStack, PrimMonad m, Num cap, Ord cap, Unbox cap) 
=> MfGraph (PrimState m) cap

Graph

-> Int

from

-> Int

to

-> cap

cap

-> m Int

Edge index

Adds an edge oriented from the vertex from to the vertex to with the capacity cap and the flow amount 0. It returns an integer k such that this is the k-th edge that is added.

Constraints

  • 0from,to<n
  • 0cap

Complexity

  • O(1) amortized

Since: 1.0.0.0

addEdge_ Source #

Arguments

:: (HasCallStack, PrimMonad m, Num cap, Ord cap, Unbox cap) 
=> MfGraph (PrimState m) cap

Graph

-> Int

from

-> Int

to

-> cap

cap

-> m () 

addEdge with the return value discarded.

Constraints

  • 0from,to<n
  • 0cap

Complexity

  • O(1) amortized

Since: 1.0.0.0

getEdge Source #

Arguments

:: (HasCallStack, PrimMonad m, Num cap, Ord cap, Unbox cap) 
=> MfGraph (PrimState m) cap

Graph

-> Int

Vertex

-> m (Int, Int, cap, cap)

Tuple of (from, to, cap, flow)

O(1) Returns the current internal state of i-th edge: (from, to, cap, flow). The edges are ordered in the same order as added by addEdge.

Constraints

  • 0i<m

Complexity

  • O(1)

Since: 1.0.0.0

Flow operations

flow Source #

Arguments

:: (HasCallStack, PrimMonad m, Num cap, Ord cap, Unbox cap) 
=> MfGraph (PrimState m) cap

Graph

-> Int

Source s

-> Int

Sink t

-> cap

Flow limit

-> m cap

Max flow

Augments the flow from s to t as much as possible, until reaching the amount of flowLimit. It returns the amount of the flow augmented. You may call it multiple times.

Constraints

  • st
  • 0s,t<n

Complexity

  • O((n+m)m) (if all the capacities are 1),
  • O(n2m) (general), or
  • O(F(n+m)), where F is the returned value

Since: 1.0.0.0

maxFlow Source #

Arguments

:: (HasCallStack, PrimMonad m, Num cap, Ord cap, Bounded cap, Unbox cap) 
=> MfGraph (PrimState m) cap

Graph

-> Int

Source s

-> Int

Sink t

-> m cap

Max flow

flow with no capacity limit.

Constraints

  • st
  • 0s,t<n

Complexity

  • O((n+m)m) (if all the capacities are 1),
  • O(n2m) (general), or
  • O(F(n+m)), where F is the returned value

Since: 1.0.0.0

Minimum cut

minCut Source #

Arguments

:: (PrimMonad m, Num cap, Ord cap, Unbox cap) 
=> MfGraph (PrimState m) cap

Graph

-> Int

Source s

-> m (Vector Bit)

Minimum cut

Returns a vector of length n, such that the i-th element is True if and only if there is a directed path from s to i in the residual network. The returned vector corresponds to a st minimum cut after calling maxFlow s t.

Complexity

  • O(n+m), where m is the number of added edges.

Since: 1.0.0.0

Edge information

edges Source #

Arguments

:: (PrimMonad m, Num cap, Ord cap, Unbox cap) 
=> MfGraph (PrimState m) cap

Graph

-> m (Vector (Int, Int, cap, cap))

Vector of (from, to, cap, flow)

Returns the current internal state of the edges: (from, to, cap, flow). The edges are ordered in the same order as added by addEdge.

Complexity

  • O(m), where m is the number of added edges.

Since: 1.0.0.0

changeEdge Source #

Arguments

:: (HasCallStack, PrimMonad m, Num cap, Ord cap, Unbox cap) 
=> MfGraph (PrimState m) cap

Graph

-> Int

Edge index

-> cap

New capacity

-> cap

New flow

-> m () 

O(1) Changes the capacity and the flow amount of the $i$-th edge to newCap and newFlow, respectively. It oes not change the capacity or the flow amount of other edges.

Constraints

  • 0newflownewcap

Complexity

  • O(1)

Since: 1.0.0.0