15.082 and 6.855J Spring 2003: Network Optimization J.B. Orlin
15.082 and 6.855J Spring 2003: Network Optimization J.B. Orlin
15.082 and 6.855J Spring 2003: Network Optimization J.B. Orlin
855J
Spring 2003
Network Optimization
J.B. Orlin
WELCOME!
Welcome to 15.082/6.855J Introduction to Network Optimization Instructor: James B. Orlin Textbook: Network Flows: Theory, Algorithms, and Applications by Ahuja, Magnanti, and Orlin referred to as AMO
Quick Overview
Next: The Koenigsberg Bridge Problem z Introduces Networks and Network Algorithms Some subject management issues Network Flows and Applications Computational Complexity Overall goal of todays lecture: set the tone for the rest of the subject z provide background z provide motivation z handle some class logistics
3
Requirement for this class z Either Linear Programming (15.081J) z or Data Structures How many have had linear programming? z There will be a review lecture later in the term How many have had a subject in data structures? z The review lecture for data structures is Thursday
4
Fondness for Powerpoint animations Cold-calling as a way to speed up learning of the algorithms Talking with partners (the person next to you in in the classroom.) Class time: used for presenting theory, algorithms, applications, theory z mostly outlines of proofs illustrated by examples (not detailed proofs) z detailed proofs are in the text
5
Graph Theory began in 1736 Leonard Eler z Visited Koenigsberg z People wondered whether it is possible to take a walk, end up where you started from, and cross each bridge in Koenigsberg exactly once z Generally it was believed to be impossible
B
5 6
D Is it possible to start in A, cross over each bridge exactly once, and end up back in A? 7
B
5 6
A
1
B
2 4 6
3
C
A
1
B
2 4 6
3
C
Is there a walk starting at A and ending at A and passing through each arc exactly once?
10
Network G = (N, A) Node set N = {1, 2, 3, 4} Arc Set A = {(1,2), (1,3), (3,2), (3,4), (2,4)} In an undirected graph, (i,j) = (j,i)
11
c a 2
5
b
d 3 e 4
c a 2 2
5
b
d 3 e 4
a 1 d
b e c 4 a 1 d 4 2 b e c 3 3
Walks
1 a 4 b c d 3 2 e 1 a 4 b c d 3 2 e
Walks are paths that can repeat nodes and arcs Example of a directed walk: 1-2-3-5-4-2-3-5 A walk is closed if its first and last nodes are the same. A closed walk is a cycle except that it can repeat nodes and arcs.
13
A
1
B
2 4 6
3
C
Is there a walk starting at A and ending at A and passing through each arc exactly once? Such a walk is called an eulerian cycle.
14
1
B
2 4 9
D
5 6
Here is the walk. A, 1, B, 5, D, 6, B, 4, C, 8, A, 3, C, 7, D, 9, B, 2, A Note: the number of arcs incident to B is twice the number of times that B appears on the walk.
15
On Eulerian Cycles
4 A
1
6 B
2 4 9
D 4
3
4
5 6
Theorem. An undirected graph has an eulerian cycle if and only if (1) every node degree is even and (2) the graph is connected (that is, there is a path from each node to each other node).
Necessity of two conditions: z Any eulerian cycle visits each node an even number of times z Any eulerian cycle shows the network is connected
Sufficiency of the condition z Assume the result is true for all graphs with fewer than |A| arcs. z Start at some node, and take a walk until a cycle C is found.
3
17
Sufficiency of the condition z Start at some node, and take a walk until a cycle C is found. z Consider G = (N, A\C)
So, G is the union of Eulerian cycles Connect G into a single eulerian cycle by adding C. 4 7 3
18
It reflects how proofs are done in class, often in outline form, with key ideas illustrated. However, this proof does not directly lead to an efficient algorithm. Usually we focus on efficient algorithms.
2.
3.
19
Homework Sets z 11 assignments, once weekly except for midterm week and final week z students may hand in assignments in groups of two z much of it is theorem/proof z Grades: out of 3 points per assignment Grading z homework: z midterm: z final:
Hamiltonian Cycles
A hamiltonian cycle is a cycle that passes through each node of the graph exactly once. This is often called a traveling salesman tour.
22
The objective was to make what we just called a hamiltonian cycle. The game was not a commercial success, especially the 3D version. But the mathematics of hamiltonian cycles is very popular today. 23
We will see this problem again when we generalize it to be the traveling salesman problem.
24
Transportation z Transportation of goods over transportation networks z Scheduling of fleets of airplanes: time/space networks Manufacturing z Scheduling of goods for manufacturing z Flow of manufactured items within inventory systems Communications z Design and expansion of communication systems z Flow of information across networks Personnel Assignment z Assignment of crews to airline schedules z Assignment of drivers to vehicles
26
A number of you have seen network problems either in subjects or in your research. Please list some examples.
27
Consider a network G = (N, A) in which there is an origin node s and a destination node t. standard notation: n = |N|, m = |A| What is the shortest path from s to t?
28
Directed Graph G = (N, A). z Source s z Sink t z Capacities uij on arc (i,j) z Maximize the flow out of s, subject to Flow out of i = Flow into i, for i s or t.
10, 9 s 6, 6 1 1,1 10,7
29
8,8 t
10, 9 s 6, 6
1 1,1
8,8
max = v s.t.
xsj
= v
-xs1 + x12 + x1t = 0 -xs2 - x12 + x2t = 0 -x1t - x2t = -v 0 xij uij for all (i,j)
j xij j xji
s.t. - i xit
= 0 for each i s or t = -v
30
Flow out of i - Flow into i = b(i) Each arc has a linear cost and a capacity
min s.t
i,j
j xij j xji
31
but first
32
Consider the following algorithm for adding two m n matrices A and B with coefficients a( , ) and b( , ).
What is the running time of this algorithm? Lets measure it as precisely as we can as a function of n and m. Is it 2nm, or 3nm, or what? Worst case versus average case How do we measure the running time? What are the basic step that we should count? 33
Work with your classroom partner to determine the number of counts when we add two matrices.
34
Operation Number (as a function of m,n) Additions c1 mn for some c1 and m, n 1 z O(mn) steps Assignments c2 mn for some c2 and m, n 1 z O(mn) steps Comparisons c3 mn for some c3 and m, n 1 z O(mn) steps TOTAL c4 mn for some c4 and m, n 1 z O(mn) steps
36
MACHINE MODEL: Random Access Machine (RAM). This is the computer model that everyone is used to. It allows the use of arrays, and it can select any element of an array or matrix in O(1) steps. z c(i,j) := a(i,j) + b(i,j). Integrality Assumption. All numbers are integral (unless stated otherwise.)
37
Size of a problem
The size of a problem is the number of bits needed to represent the problem. The size of the n m matrix A is not nm. z If each matrix element has K bits, the size is nmK z e.g., if max 2107 < aij < 2108, then K = 108. z K = O( log (amax).
38
We say that an algorithm runs in polynomial time if the number of steps taken by an algorithm on any instance I is bounded by a polynomial in the size of I. We say that an algorithm runs in exponential time if it does not run in polynomial time. Example 1: finding the determinant of a matrix can be done in O(n3) steps. z This is polynomial time.
39
Example 2: We can determine if n is prime by dividing n by every integer less than n. z This algorithm is exponential time. z The size of the instance is log n z The running time of the algorithm is O(n). z Side note: there is a polynomial time algorithm for determining if n is prime. Almost all of the algorithms presented in this class will be polynomial time. One can find an Eulerian cycle (if one exists) in O(m) steps. There is no known polynomial time algorithm for finding a hamiltonian cycle.
40
We contrast two algorithm, one that takes 30,000 n3 steps, and one that takes 2n steps. Suppose that we could carry out 1 billion steps per second. # of nodes n = 30, n = 40, n = 50 n = 60 30,000 n3 steps 0.81 seconds 1.92 seconds 3.75 seconds 6.48 seconds 2n steps 1 second 17 minutes 12 days 31 years
41
Suppose that we could carry out 1 trillion steps per second, and instantaneously eliminate 99.9999999% of all solutions as not worth considering
1,000 n10 steps 2.82 seconds 10.74 seconds 34.86 seconds 100 seconds
43
Upcoming Lectures
Lecture 2: Review of Data Structures z even those with data structure backgrounds are encouraged to attend. Lecture 3. Graph Search Algorithms. z how to determine if a graph is connected z and to label a graph z and more
44