Presentation is loading. Please wait.

Presentation is loading. Please wait.

Rooted Routing Using Structural Decompositions Jiao Tong University Shanghai, China June 17, 2013.

Similar presentations


Presentation on theme: "Rooted Routing Using Structural Decompositions Jiao Tong University Shanghai, China June 17, 2013."— Presentation transcript:

1 Rooted Routing Using Structural Decompositions Jiao Tong University Shanghai, China June 17, 2013

2 The Bridges of Konigsberg Euler, 1736

3 A Prescient Observation by Euler Euler said: “the problem… can be solved by making an exhaustive list of all possible routes … because of the number of possibilities this method would be too difficult and laborious and in problems with more bridges it would be impossible. Much of the development in modern graph theory is tied to efficient computer algorithms which solves routing problems modeled using graphs

4 A Prescient Observation by Euler Euler said: “the problem… can be solved by making an exhaustive list of all possible routes … because of the number of possibilities this method would be too difficult and laborious and in problems with more bridges it would be impossible. Much of the development in modern graph theory is tied to efficient computer algorithms which solves routing problems modeled using graphs

5 Routing in The Modern Era

6 A Long Tour

7 K 5 K 3,3

8 Modelling Euler’s Problem Using Graphs

9 Paths and Connectivity A path is a (finite) sequence of distinct vertices, consecutive elements of which are joined by an edge.

10 Paths and Connectivity A path is a (finite) sequence of distinct vertices, consecutive elements of which are joined by an edge. The first and last vertices of a path are its endpoints.

11 Paths and Connectivity A path is a (finite) sequence of distinct vertices, consecutive elements of which are joined by an edge. The first and last vertices of a path are its endpoints. A graph is connected if every pair of vertices are joined by a path.

12

13 Degrees of Connectivity & Cutsets

14 A cutset is a set of vertices whose deletion leaves a disconnected graph.

15 Determining Point to Point Connectivity Given a graph G and vertices x,y  V, determine if there are k paths from x to y pairwise disjoint except at their endpoints.

16 Determining Point to Point Connectivity Given a graph G and vertices x,y  V, determine if there are k paths from x to y pairwise disjoint except at their endpoints. Given a graph G and sets S and T determine if there are k pairwise disjoint paths from S to T.

17 Menger’s Theorem There exists exactly one of k vertex disjoint S - T paths a subset X of G with |X| < k, that hits all S - T paths.

18 An Algorithm and Some Applications There is an efficient (O(k|E(G)|)-time) algorithm to find either k vertex disjoint S-T paths in G or a set of fewer than k vertices hitting all S-T paths of G.

19 An Algorithm and Some Applications There is an efficient (O(k|E(G)|)-time) algorithm to find either k vertex disjoint S-T paths in G or a set of fewer than k vertices hitting all S-T paths of G. This algorithm has a myriad of applications in routing

20 An Algorithm and Some Applications There is an efficient (O(k|E(G)|)-time) algorithm to find either k vertex disjoint S-T paths in G or a set of fewer than k vertices hitting all S-T paths of G. This algorithm has a myriad of applications in routing,scheduling, resource allocation, game theory, algebra,…..

21 k Disjoint Rooted Paths Given subsets S={s 1,...,s k } and T={t 1,…,t k } of V determine if there are k vertex disjoint paths P 1,…,P k such that P i contains s i and t i

22 k Disjoint Rooted Paths Given subsets S={s 1,...,s k } and T={t 1,…,t k } of V determine if there are k vertex disjoint paths P 1,…,P k such that P i contains s i and t i Robertson and Seymour developed an efficient algorithm to solve this problem, and in so doing produced some of the depest and most important results in graph theory.

23 An Instructive Example s1s1 t1t1 t2t2 s2s2

24 A Second Instructive Example Clique C and 2k vertex-disjoint S ∪ T to C paths => P 1,..., P k exist.

25 An Illuminating Observation If G contains a clique C with 2k+1 vertices and Q is a maximal set of vertex disjoint paths from S  T to V(C) then any vertex of C not on any of the elements of Q is irrelevant (i.e. the desired P 1,…,P k exist in G precisely if they exist in G-v).

26 An Illuminating Observation If G contains a clique C with 2k+1 vertices and Q is a maximal set of vertex disjoint paths from S  T to V(C) then any vertex of C not on any of the elements of Q is irrelevant (i.e. the desired P 1,…,P k exist in G precisely if they exist in G-v).

27 Clique Models A K l model in G consists of l vertex disjoint connected subgraphs of G every two of which are joined by an edge

28 Using Clique Models for k-DRP If G contains a K 8k+5 model then we can quickly find an irrelevant vertex of G.

29 Our Algorithm for k-DRP If G contains a K 8k+5 model then we can quickly find an irrelevant vertex v of G and recurse on G-v. Otherwise we solve the problem by exploiting the structure that the exclusion of a clique model yields.

30 Graphs Without Clique Minors I: Forests A connected graph G has no K 3 model precisely if it has no cycle. I.e. if each of its connected components is a tree. Thus if a graph with no K 3 model does not have a cutvertex it is an edge.

31 Graphs Without Clique Minors II: Forbidding K 5 If a graph with no K 5 model does not have a cutset of size 3 then it is planar or a special 8 vertex graph L. Wagner, 1946.

32 Tree Decompositions A tree decomposition decomposes G into pieces corresponding to the nodes of a tree using cutsets corresponding to its arc.

33 Tree Decompositions A tree decomposition for G consists of a tree T and a subtree S v for each vertex v of G s.t. if uv is an edge of G then S u intersects S v. We set W t ={v| t  S v } and H t to be the graph with vertex set W t s.t. uv εE(H t ) iff. uvεE(G) or u,v ε W s  W t for some st εE(T). Every G has a one node tree decomposition. If uv is a nonedge of G then G has a tree decomposition using tree st where st corresponds to the cutset V-u-v. The k by k grid has a tree decomposition where T is a path on k^2 nodes each internal node of which corresponds to a cutset of the grid of size k

34 Tree Decompositions A tree decomposition for G consists of a tree T and a subtree S v for each vertex v of G s.t. if uv is an edge of G then S u intersects S v. We set W t ={v| t  S v } and H t to be the graph with vertex set W t s.t. uv εE(H t ) iff. uvεE(G) or u,v ε W s  W t for some st εE(T). Every G has a one node tree decomposition. If uv is a nonedge of G then G has a tree decomposition using tree st where st corresponds to the cutset V-u-v. The k by k grid has a tree decomposition where T is a path on k^2 nodes each internal node of which corresponds to a cutset of the grid of size k

35 Tree Decompositions A tree decomposition for G consists of a tree T and a subtree S v for each vertex v of G s.t. if uv is an edge of G then S u intersects S v. We set W t ={v| t  S v } and H t to be the graph with vertex set W t s.t. uv εE(H t ) iff. uvεE(G) or u,v ε W s  W t for some st εE(T). Every G has a one node tree decomposition. If uv is a nonedge of G then G has a tree decomposition using tree st where st corresponds to the cutset V-u-v. The k by k grid has a tree decomposition where T is a path on k^2 nodes each internal node of which corresponds to a cutset of the grid of size k

36 Tree Decompositions A tree decomposition for G consists of a tree T and a subtree S v for each vertex v of G s.t. if uv is an edge of G then S u intersects S v. We set W t ={v| t  S v } and H t to be the graph with vertex set W t s.t. uv εE(H t ) iff. uvεE(G) or u,v ε W s  W t for some st εE(T). Every G has a one node tree decomposition. If uv is a nonedge of G then G has a tree decomposition using tree st where st corresponds to the cutset V-u-v. The k by k grid has a tree decomposition where T is a path on k 2 +k nodes each arc of which corresponds to a cutset of the grid of size k

37 Tree Decompositions A tree decomposition for G consists of a tree T and a subtree S v for each vertex v of G s.t. if uv is an edge of G then S u intersects S v. We set W t ={v| t  S v } and H t to be the graph with vertex set W t s.t. uv εE(H t ) iff. uvεE(G) or u,v ε W s  W t for some st εE(T). Every G has a one node tree decomposition. If uv is a nonedge of G then G has a tree decomposition using tree st where st corresponds to the cutset V-u-v. The k by k grid has a tree decomposition where T is a path on k 2 +k nodes each arc of which corresponds to a cutset of the grid of size k

38 Adhesion and Width The Adhesion of a tree decomposition is the maximum over all of its arcs st of |W s ∩ W t |. The width of a tree decomposition is the maximum over all of its nodes s of |W s |.

39 Adhesion and Width The Adhesion of a tree decomposition is the maximum over all of its arcs st of |W s ∩ W t |. The width of a tree decomposition is the maximum over all of its nodes s of |W s |.

40 Graphs Without Clique Minors III: Forbidding K 5 Revisited A graph has no K 5 model precisely if it has a tree decomposition of adhesion at most 3 such that each H t is planar or a special 8 vertex graph L. Wagner, 1946.

41 Graphs Without Clique Minors IV: Forbidding K l If G contains no K l model then it has a tree decomposition of bounded adhesion such that each H t is a graph which can be “almost embedded” in a surface in which K l cannot be embedded. Robertson and Seymour, 1990.

42 The k-DRP Algorithm There is a linear time algorithm which finds either (i) a K l model in G, or (ii) a tree decomposition of G of bounded adhesion such that each H t is almost embeddable in a surface in which K l cannot be embedded. (Li, Kawarabayashi, R., 2009). We can solve k-DRP in G given such a tree decomposition in linear time.

43 Bounded Extension: An “Almost Embeddability” Ingredient If G-v is planar for some v, then G contains no K 6 model If G is obtained from a graph H embeddable in a surface Σ by adding a bounded number of vertices then G is almost embeddable in Σ. For a tree decomposition of bounded width, every H t is almost embeddable in the plane.

44 Bounded Extension: An “Almost Embeddability” Ingredient If G-v is planar for some v, then G contains no K 6 model If G is obtained from a graph H embeddable in a surface Σ by adding a bounded number of vertices then G is almost embeddable in Σ. For a tree decomposition of bounded width, every H t is almost embeddable in the plane.

45 Bounded Extension: An “Almost Embeddability” Ingredient If G-v is planar for some v, then G contains no K 6 model If G is obtained from a graph H embeddable in a surface Σ by adding a bounded number of vertices then G is almost embeddable in Σ. For a tree decomposition of bounded width, every H t is almost embeddable in the plane.

46 Brambles A bramble is a set of connected subgraphs every two of which intersect or are joined by an edge. The order of a bramble is the minimun size of a set of vertices which intersects all its elements. The trees of a clique model. For any set S of vertices, β S is the set of connected subgraphs containing more than half the vertices of S. The set of subgraphs of a grid formed by the union of a row and a column.

47 Brambles A bramble is a set of connected subgraphs every two of which intersect or are joined by an edge. The order of a bramble is the minimun size of a set of vertices which intersects all its elements. The trees of a clique model. For any set S of vertices, β S is the set of connected subgraphs containing more than half the vertices of S. The set of subgraphs of a grid formed by the union of a row and a column.

48 Brambles A bramble is a set of connected subgraphs every two of which intersect or are joined by an edge. The order of a bramble is the minimun size of a set of vertices which intersects all its elements. The trees of a clique model. For any set S of vertices, β S is the set of connected subgraphs containing more than half the vertices of S. The set of subgraphs of a grid formed by the union of a row and a column.

49 Brambles A bramble is a set of connected subgraphs every two of which intersect or are joined by an edge. The order of a bramble is the minimun size of a set of vertices which intersects all its elements. The trees of a clique model. For any set S of vertices, β S is the set of connected subgraphs containing more than half the vertices of S. The set of subgraphs of a grid formed by the union of a row and a column.

50 Brambles A bramble is a set of connected subgraphs every two of which intersect or are joined by an edge. The order of a bramble β denoted ord(β) is the minimun size of a set of vertices which intersects all its elements. The trees of a clique model. For any set S of vertices, β S is the set of connected subgraphs containing more than half the vertices of S. The set of subgraphs of a grid formed by the union of a row and a column.

51 Brambles and Tree Width A graph has a tree decomposition of width at most w precisely if it has no bramble of order w+2. Robertson,Seymour,Thomas,1986 We can find such a tree decomposition if it exists in linear time Bodlaender

52 Brambles and Tree Width A graph has a tree decomposition of width at most w precisely if it has no bramble of order w+2. Robertson,Seymour,Thomas,1986 We can find such a tree decomposition if it exists in linear time Bodlaender

53 Distinguishing Brambles For any bramble β and set X of less than ord(β) vertices, there is a unique component f(β,X) of G-X containing an element of β. X is a distinguisher of β 1 and β 2 if |X|<min (ord(β 1 ),ord(β 2 )) and f(β 1,X) ≠f(β 2,X).

54 Distinguishing Brambles For any bramble β and set X of less than ord(β) vertices, there is a unique component f(β,X) of G-X containing an element of β. X distinguishes β 1 and β 2 if |X|<min (ord(β 1 ),ord(β 2 )) and f(β 1,X) ≠f(β 2,X).

55 A Canonical Tree Decomposition There is a tree decomposition of G in which the nodes correspond to the “maximal brambles” of G and the arcs correspond to the cutsets of minimum order distinguishing them. If G contains no K l model we can massage this to obtain the decomposition with almost embeddable H t

56 A Canonical Tree Decomposition There is a tree decomposition of G in which the nodes correspond to the “maximal brambles” of G and the arcs correspond to the cutsets of minimum order distinguishing them. If G contains no K l model we can massage this to obtain the decomposition with almost embeddable H t

57 Building The Tree Decomposition For every large order bramble corresponding to a node t of the canonical tree decomposition there is a high wall W which is a subgraph of H t. If the attachments between this wall and the rest of the graph are sufficiently non-planar we find a K l model. Otherwise we obtain a near embedding.

58 Building The Tree Decomposition For every large order bramble corresponding to a node t of the canonical tree decomposition there is a high wall W which is a subgraph of H t. If the attachments between this wall and the rest of the graph are sufficiently non-planar we find a K l model. Otherwise we obtain a near embedding of H t.

59 Details to Follow Lecture II: Sketch of (i) why excluding clique models yields an RS tree decomposition, (ii) why excluding brambles yields tree decompositions of bounded width, and (iii) why excluding walls excludes brambles. Lecture III: Discussion of how to optimize in graphs with well-behaved tree decompositions Lecture IV: linear algorithms for constructing well-behaved tree decompositions.

60 Details to Follow Lecture II: Sketch of (i) why excluding clique models yields an RS tree decomposition, (ii) why excluding brambles yields tree decompositions of bounded width, and (iii) why excluding walls excludes brambles. Lecture III: Discussion of how to optimize in graphs with well-behaved tree decompositions Lecture IV: linear algorithms for constructing well-behaved tree decompositions.

61 Details to Follow Lecture II: Sketch of (i) why excluding clique models yields an RS tree decomposition, (ii) why excluding brambles yields tree decompositions of bounded width, and (iii) why excluding walls excludes brambles. Lecture III: Discussion of how to optimize in graphs with well-behaved tree decompositions Lecture IV: linear algorithms for constructing well-behaved tree decompositions.

62 Minors and Models A model of H in G consists of a set of disjoint trees {T v | v in V(H)} of G, such that for every edge uv of H there is an edge xy of G with x in T u and y in T v. H is a minor of G if there is a model of H in G. The order of a bramble is the minimum size of a subset of V intersecting each of its elements.

63 Minors and Models A model of H in G consists of a set of disjoint trees {T v | v in V(H)} of G, such that for every edge uv of H there is an edge xy of G with x in T u and y in T v. H is a minor of G if there is a model of H in G. The order of a bramble is the minimum size of a subset of V intersecting each of its elements.

64 Three Consequences of The Excluded Minor Structure Theorem 1)There is an efficient algorithm to determine if H is a minor of G. 2) In any infinite sequence G 1,G 2,… there is an i<j such that G i is a minor of G j. 3) There is an efficient algorithm to test memebrship in any minor closed family.

65 Three Consequences of The Excluded Minor Structure Theorem 1)There is an efficient algorithm to determine if H is a minor of G. 2) In any infinite sequence G 1,G 2,… there is an i<j such that G i is a minor of G j. 3) There is an efficient algorithm to test memebrship in any minor closed family.

66 Three Consequences of The Excluded Minor Structure Theorem 1)There is an efficient algorithm to determine if H is a minor of G. 2) In any infinite sequence G 1,G 2,… there is an i<j such that G i is a minor of G j. 3) There is an efficient algorithm to test membership in any minor closed family.

67 Thanks for your attention.


Download ppt "Rooted Routing Using Structural Decompositions Jiao Tong University Shanghai, China June 17, 2013."

Similar presentations


Ads by Google