Section 7: Network Flows Flashcards

1
Q

Directed graph

A

a pair (V, E), where V is any set, and E is a set whose elements are ordered pairs of elements from V

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

in-edge of v

A

an edge from u to v

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

out-edge of v

A

and edge from v to w

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

in-degree of a vertex v

A

number of in-edges of v

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

out-degree of v

A

number of out-edges of v

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Source

A

A vertex in a digraph whose in-degree is zero

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Sink

A

a vertex whose out-degree is zero

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Directed path from u to v

A

a sequence of vertices
u = w_1, . . . , w_p = v such that ->w_iw_i+1
is a directed edge for each
1 ≤ i ≤ p − 1.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

basic flow network

A

a directed graph with exactly one source and one sink, equipped with a function c: E → N which
assigns a capacity to each edge

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

Flow

A

a function f : E →N ∪ {0} which satisfies the following conditions:

a) for every edge e, f(e) is at most c(e), the capacity of e, and

b) for every vertex v other than the source and the sink, the sum of the flows on the in-edges of v is equal to the sum of the flows on the out-edges of v.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

value of a flow, val(f),

A

Equal to the sum of the
flows assigned to the out-edges of the source

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

Lemma 7.1. Let f be a flow in the basic flow network D = (V, E). Then the sum of the flows assigned to the out-edges of the source is equal to __________

A

the sum of the flows assigned to the in-edges of the sink.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

augmenting path

A

an undirected path from the source to the sink such that we can increase the flow along every edge of the path by some value x ∈ N without violating any capacity constraints

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

forward edges

A

path includes the edge uv
and −→uv is a directed edge of our graph

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

backward edges

A

path includes the edge uv but only the directed edge −→vu is in the network.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

saturated edge

A

An edge in the network is said to be saturated by a given flow if the flow on the edge is equal to the capacity of the edge

17
Q

Cut

A

a partition of the vertices into two disjoint sets, such that the source belongs to the first set and the sink to the second.

18
Q

Capacity of a cut (X,Y)

A

sum of the capacities of the edges from X to Y (we ignore any edges from Y to X)

19
Q

Minimum cut

A

a cut whose capacity is equal to the minimum
capacity of any cut in the digraph

20
Q

Max-Flow Min-Cut Theorem

A

In any basic flow network, the value of the maximum flow is equal to the
capacity of the minimum cut.