Faster Fixed Parameter Tractable Algorithms for Finding Feedback Vertex Sets
|
|
|
- Melissa Nicholson
- 10 years ago
- Views:
Transcription
1 Faster Fixed Parameter Tractable Algorithms for Finding Feedback Vertex Sets VENKATESH RAMAN, SAKET SAURABH, AND C. R. SUBRAMANIAN The Institute of Mathematical Sciences Abstract. A feedback vertex set (fvs) of a graph is a set of vertices whose removal results in an acyclic graph. We show that if an undirected graph on n vertices with minimum degree at least 3 has a fvs on at most 1 3 n1 ɛ vertices, then there is a cycle of length at most 6 (for ɛ 1/2, we can even improve ɛ this to just 6). 12 log k Using this, we obtain a O(( + log log k 6)k n ω ) algorithm for testing whether an undirected graph on n vertices has a fvs of size at most k. Here n ω is the complexity of the best matrix multiplication algorithm. The previous best parameterized algorithm for this problem took O((2k + 1) k n 2 ) time. We also investigate the fixed parameter complexity of weighted feedback vertex set problem in weighted undirected graphs. Categories and Subject Descriptors: F.2.2 [Analysis of Algorithms and Problem Complexity]: Nonnumerical Algorithms and Problems Computations on discrete structures; G.2.2 [Discrete Mathematics]: Graph Theory Graph algorithms General Terms: Algorithms, Theory Additional Key Words and Phrases: Feedback vertex set, girth, parameterized complexity 1. Introduction It is well known that a connected undirected graph possesses a cycle of logarithmic length if its minimum degree or average degree is at least 3. In this article, we obtain a similar result on the existence of short cycles in graphs having a small feedback vertex set (fvs). A feedback vertex set of a graph is a subset of vertices whose removal results in an acyclic graph. We show that if an undirected graph on n vertices with minimum degree at least 3 has a fvs on at most 1 3 n1 ɛ vertices, then Parts of this work were presented as extended abstracts in Proceedings of 13th Annual International Symposium on Algorithms and Computation (ISAAC 02), Lecture Notes in Computer Science, vol. 2518, Springer-Verlag, New York, pp , and Proceedings of the 2nd Brazilian Symposium on Graphs, and Algorithms, and Combinatorics (GRACO), Electronic Notes in Discrete Mathematics, vol. 19, pp Authors address: Theoretical Computer Science, The Institute of Mathematical Sciences, CIT Campus, Taramani, Chennai, India, , {vraman,saket,crs}@imsc.res.in. Permission to make digital or hard copies of part or all of this work for personal or classroom use is granted without fee provided that copies are not made or distributed for profit or direct commercial advantage and that copies show this notice on the first page or initial screen of a display along with the full citation. Copyrights for components of this work owned by others than ACM must be honored. Abstracting with credit is permitted. To copy otherwise, to republish, to post on servers, to redistribute to lists, or to use any component of this work in other works requires prior specific permission and/or a fee. Permissions may be requested from Publications Dept., ACM, Inc., 2 Penn Plaza, Suite 701, New York, NY USA, fax +1 (212) , or [email protected]. C 2006 ACM /06/ $5.00 ACM Transactions on Algorithms, Vol. 2, No. 3, July 2006, pp
2 404 V. RAMAN ET AL. there is a cycle of length at most 6 (for ɛ 1/2, we can even improve this to just ɛ 6). This is one of the main contributions of this article. Using this structural result, we also obtain a faster algorithm for solving the fvs problem. This problem is to determine, given an undirected graph G on n vertices and a nonnegative integer parameter k, whether G has a set of at most k vertices whose removal results in an acyclic graph. We explore efficient fixed parameter algorithms whose worst-case time complexity is bounded by functions of the form f (k)n O(1) where f is any function of k. Our focus is on making f as slowly growing (with k) as possible. Such an algorithm is quite useful in practice for small ranges of k (against a naive n k+o(1) algorithm). Problems for which such algorithms can be designed are said to be Fixed Parameter Tractable (FPT). Several well-known NP-complete problems have been shown to be in FPT. Even if a problem is shown to be FPT, the quest for improving the function f (k) goes on. For example, see Alber et al. [2001, 2002], Kanj and Perkovic [2002], and Fomin and Thilikos [2003] for recent attempts in improving the f (k) in the case of the Planar Dominating Set problem. The book by Downey and Fellows [1999] provides a good introduction to the topic of Parameterized Complexity. Fast parameterized algorithms have been proposed for the fvs problem earlier. See Downey and Fellows [1999] for a O((2k + 1) k n 2 ) time algorithm. In a preliminary version of this article [Raman et al. 2002], the present authors substantially improved the dependence on k by developing a O(max{12, 4 log k} k n ω ) 1 time deterministic algorithm. Recently, Kanj et al. [2004] have obtained an O((2 log k +2 log log k +18) k n 2 ) time algorithm using results from extremal graph theory. If we are willing to accept uncertainty about the correctness of the answer, one can solve this problem in O(4 k kn) time by a randomized algorithm presented in Becker et al. [2000]. We improve the known f (k) function for this problem by developing an algorithm 12 log k whose running time is O(( log log k + 6)k n ω ) where ω is the exponent in the runtime for Matrix Multiplication. All known algorithms for the problem use the bounded search tree technique. In particular, they work by finding a short cycle in the graph after some preprocessing, and branching recursively on each vertex of the short cycle. The improvement presented here also adheres to this paradigm. The correctness and efficiency of our algorithm is based on the new graph theoretical result (mentioned before) that connects minimum fvs size and the length of the shortest cycle. Throughout the paper, we use δ(g) to denote the minimum degree of a graph G and g(g) to denote its girth, that is, the length of a shortest cycle in the graph OUR RESULTS. First, we obtain the following result on short cycles. THEOREM 1. Let G be a graph on n vertices with minimum degree 3, having a feedback vertex set of size k, such that (n k) > 4 (k 2). Then, g(g) 6. Based on Theorem 1, we present a simple FPT algorithm for finding a fvs of an undirected graph. 1 All logarithms are to the base 2.
3 Faster Fixed Parameter Tractable Algorithms 405 THEOREM 2. Let G be an undirected graph on n vertices. Then, we can determine whether or not G has a feedback vertex set of size at most k (and find one if there is) in O(max{6, 4 log k + 2} k n ω ) time. This is a substantial improvement over the O((2k + 1) k n 2 ) time algorithm of Downey and Fellows [1999]. The Theorem 1 is further generalized as follows. THEOREM 3. Let 0 <ɛ<1. Let G be a graph on n vertices such that (a) δ(g) 3, (b) n 3 1 ɛ, and (c) G has a fvs of size at most 1 3 n1 ɛ. Then G has a cycle of length less than 6/ɛ, that is, g(g) < 6/ɛ. By applying Theorem 3 and by being more careful about analyzing and deciding whether we proceed by finding a short cycle or we apply brute-force approach, we obtain further significant improvements in the running time. Precisely, we show THEOREM 4. Let G be an undirected multigraph on n vertices. Then, we can determine whether or not G has a fvs of size at most k in time ( ( ) ) 12 log k k O log log k + 6 n ω. log log k This results in an improvement in the running time by a factor of ( ) k over 6 the result mentioned in Theorem 2. We also show that the weighted feedback vertex set problem is solvable in essentially the same time if each vertex has real weight at least 1. In the general case, when the weights are arbitrary real numbers, we show that the problem is unlikely to be fixed parameter tractable ORGANIZATION OF THE REST OF THE ARTICLE. Given G and k, one can construct a graph G, in polynomial time, with δ(g ) 3 such that G has a fvs of size at most k if and only if G has a fvs of size at most k. Section 2 describes this preprocessing step. It also describes a generic, short cycle based branching algorithm that will be used by the rest of the algorithms we develop. Section 3 proves one of the main structural results, namely, Theorem 1. It also derives Theorem 2 as a consequence. Section 4 presents the proof of the other structural result, Theorem 3 and presents a description of the algorithm stated in Theorem 4. Section 5 investigates the parameterized complexity of weighted feedback vertex set. Finally Section 6 concludes with remarks and further directions. Throughout this article, we use G = (V, E) to denote an undirected (multi)- graph on n vertices and m edges. For a subset S V, G[S] is the induced subgraph of G on S. We assume that all graphs are represented in the form of adjacency lists. 2. Preliminaries In this section, we first describe some preprocessing that removes non-essential vertices from the input graph without affecting the size of minimum fvs. Then, we present a generic algorithm for finding a fvs which is going to be the template of our main algorithmic results.
4 406 V. RAMAN ET AL PREPROCESSING. The following lemma is not difficult to verify and is well known in the literature on fvs problems. See, for example, Bar-Yehuda et al. [1998] for proofs. LEMMA 1. Let G be an undirected multigraph. Perform the following steps as long as possible. (1) If G has a vertex of degree 1, remove it (along with the incident edge if any). (2) If G has a vertex x of degree 2 adjacent to vertices y and z, y x and z x, short circuit by removing x and joining and y and z by a new edge (even if y and z were adjacent earlier). Let G be the resulting multigraph. Then G has a feedback vertex set of size at most k if and only G has a feedback vertex set of size at most k. Clearly, the graph G is such that each component of G has minimum degree at least three unless that component is either an empty graph or a graph on one vertex with a self loop (in which case that component has a feedback vertex set of size 1). G can be constructed in O(m) steps where m is the number of edges in G. LEMMA 2[BAR-YEHUDA ET AL. 1998]. Given an undirected multi graph G = (V, E) on m edges, in O(m) time we can produce a multigraph G with minimum degree 3 such that G has a fvs of size k if and only if G has a fvs of size k. We also note that: LEMMA 3. Given an undirected multigraph G = (V, E) on n vertices with δ(g) 3, removing a vertex v from G can be achieved in O(n) time. We recall the following well-known algorithmic results: LEMMA 4[CORMENETAL. 2001]. Given an undirected multigraph G, we can test whether G has a cycle or not in O(n) time, where n is the number of vertices in G. LEMMA 5[ITAI AND RODEH 1978]. Given an undirected multigraph G, a shortest cycle (if there is any) in G can be found in O(min{mn, n ω }) time where n ω is the running time of the best-known algorithm for multiplying two n by n matrices. LEMMA 6[ITAI AND RODEH 1978]. Given an undirected graph G on n vertices, a cycle of length at most g(g) + 1 in G can be found in O(n 2 ) time A GENERIC ALGORITHM. The following generic algorithm forms the basis of our main algorithmic results. Here, G is an undirected multigraph and k 0. The algorithm returns YES and a feedback vertex set of size at most k in G if there is one and returns NO otherwise. Algorithm GFBVS(G, k) Step 0 : If G is acyclic, then answer YES and return. Step 0: If k = 0 and G contains a cycle, then answer NO and EXIT. Step 1: Apply Lemma 1 to get G. Step 2: Find a shortest cycle C in G.(C could possibly be of length 1 or 2.) Step 3: If for some vertex v C, FBVS(G v, k 1) is true, then answer YES and return {v} FBVS(G v, k 1), else answer NO.
5 Faster Fixed Parameter Tractable Algorithms 407 The correctness of the algorithm follows from Lemma 1 and the fact that any feedback vertex set must contain a vertex from every cycle in the graph. Furthermore, if g(g ) g for all the graphs G used in Step 2 of the recursive calls, then the overall algorithm takes O(g k n ω ) time. This is because the recursion tree at Step 3 has a branching factor of at most g and depth at most k, and Step 2 takes O(n ω ) time from Lemma 5. Steps 0 and 1 each takes O(m) time by Lemma 4. Also, in Step 2, instead of finding a shortest cycle, if we find a cycle of length at most g + 1, then by Lemma 6, the running time of the algorithm will be O((g + 1) k n 2 ) time. Thus we have LEMMA 7. Let G be an undirected graph, and let g be the maximum size of the girth of the graphs G used in Step 2 of GFBVS(G, k). Then we can find a feedback vertex set of size at most k in G (or determine its absence) in O(g k n ω ) time or in O((g + 1) k n 2 ) time. Erdös and Posa [1962] observed that girth of any undirected graph G with minimum degree 3 is bounded by 2 log n. Given such a graph, one can find in O(n) time a cycle of length at most 2 log n by growing a Breadth First Search (BFS) tree till the first non-tree edge is encountered. Thus, we get LEMMA 8. Any graph G with minimum degree at least 3 has a cycle of length at most 2 log n and such a cycle can be found in O(n) time where n is the number of vertices in the graph G. So, in Step 2 of the generic algorithm if we find just a cycle of length at most 2 log n (which may not necessarily be the shortest cycle), then from Lemma 8 and Lemma 7, we have THEOREM 5. Given a graph G on n vertices, and an integer parameter k, we can determine whether or not G has a feedback vertex set of size at most k in O((2 lg n) k n + m) time, or in O((4k log k) k n + nm) time. The second bound follows from the observation that (2 log n) k (4k log k) k + n for all n and k n. 3. Proofs of Theorems 1 and 2 We first present the proof of Theorem 1 and discuss the tightness of our result. Then we derive Theorem 2 as a consequence. The arguments in Theorem 1 are based on the following lemma. LEMMA 9. Let T = (V, E) be a forest on N vertices. Let M ={(i, j) E deg T (i) = deg T ( j) = 2} and L ={a V deg T (a) 1}. Then there exist M M, such that M is a matching and W = L M N/4. PROOF. Without loss of generality assume that T is a tree, otherwise we can apply the result on each tree of the forest and combine them to get the result. Now let v be a vertex of degree not equal to 2. Root the tree at v and direct the edges away from the root, call it T v. Let D 2 be the set of degree 2 vertices of T and D 3 denotes the set of vertices of degree at least 3 in T. Every connected component of
6 408 V. RAMAN ET AL. FIG. 1. Illustration for Lemma 9. the induced graph T v [D 2 ] is either an isolated vertex or a directed path. Let M be a matching on degree 2 vertices consisting of all the alternate edges starting from the vertices of indegree 0 of all the paths of T v [D 2 ] ignoring their direction. Clearly M M. Define S to be the set of vertices in D 2 unmatched by any edge in M. Note that each vertex in S is either an isolated vertex of T v [D 2 ] or the last vertex in an even length directed path of T v [D 2 ]. See Figure 1. Now with each vertex u S, associate its unique child in T v, whose degree is either 1 or at least 3 in T. Note that this association is injective, as in a rooted tree we have a unique parent for every vertex other than root. This implies that S L + D 3. It is well known that the number of vertices of degree at least 3 in a tree is smaller than the number of leaves of the tree. So, we have D 3 < L and S L + D 3 2 L. This gives N = L +2 M + S + D 3 < L +2 M +2 L + L 4 L +2 M. Dividing both sides by 4 gives N/4 < L + M /2 W = L M. This completes the proof. PROOF OF THEOREM 1. Without loss of generality, we assume that G is a simple graph having no self-loops and parallel edges. Let F be a fvs of size k in G and let T denote the induced forest G[V F] onn = n k vertices. Apply Lemma 9 to T to get W (mentioned in the Lemma 9). Now with every element a W,we associate a (unordered) pair of vertices of F as follows: Case 1. a L, that is, a is a vertex of degree 0 or 1. Since degree of a is at least 3 in G, a has at least two neighbors in F. We pick arbitrarily two of these neighbors and associate them with the a.weuse{x a, y a } to denote the pair associated with vertex a. Case 2. a = (u, v) is an edge from M. Since each of u and v has degree at least 3inG, each of them has at least one neighbor in F. We pick one neighbor (in F) of each u and v and associate them with a. We use {x u, x v } to denote the pair associated with a = (u, v). Note that x u = x v possibly.
7 Faster Fixed Parameter Tractable Algorithms 409 FIG. 2. Graph G with g(g) = 6, FVS = 5 and δ(g) 3. Suppose there is a pair {x, y} associated with some a W such that x = y. In that case, a should be an edge (u, v) M. Thus, we get a 3-cycle (x, u, v, x)ing proving that g(g) 6. Hence, we assume that every selected pair {x, y} is such that x y. Since the number of such pairs is at most ( k) 2 and as W N 4 > ( k 2), the association map is not injective. That is, there are a 1, a 2 W, a 1 a 2 such that both a 1 and a 2 are associated with some pair {x, y} with x y. The following cases arise. Both a 1 and a 2 are vertices of degree at most 1. In that case, we get a 4-cycle (x, a 1, y, a 2, x), thereby proving that g(g) 4. Both a 1 and a 2 are edges (u 1, v 1 ) and (u 2, v 2 ) from M such that x is a neighbor of u 1 and u 2 and y is a neighbor of v 1 and v 2. In this case, we get a cycle (u 1, x, u 2, v 2, y, v 1, u 1 ) of length 6. This leads to a cycle of length 6, thereby proving that g(g) 6. Without loss of generality, a 1 is a vertex a of degree 1 and a 2 is an edge (u, v) from M. Also, x is a neighbor of a and u and y is a neighbor of a and v. This gives rise to a cycle (a, x, u, v, y, a) of length 5, proving again that g(g) 6. In any case, we are guaranteed to have a cycle of length at most 6 thereby proving Theorem 1. COROLLARY 1. If a graph on n vertices with minimum degree 3 has a feedback vertex set of size at most n/2, then g(g) 6. Remark 1. Corollary 1 is tight in the sense that there are graphs G satisfying the hypothesis of the corollary with g(g) = 6, as the following example (Figure 2) shows. Let G = (V, E) be a graph on n 63 vertices such that n is a multiple of 4. The graph has a cycle C of length n 4 on vertices 1 to n 4. The remaining 4 vertices are named v 0, v 1, v 2 and v 3. The vertex v i is adjacent to all vertices j in the cycle such that j mod 4 = i. It is easy to see that g(g) = 6, and F 5as{1, v 0, v 1, v 2, v 3 } is a feedback vertex set of G.
8 410 V. RAMAN ET AL. COROLLARY 2. Let G be a graph on n vertices with minimum degree 3 having a feedback vertex set of size at most k. Then, g(g) max{6, 4lgk + 2}. PROOF. Ifk n/2, then g 6 by the previous corollary. Otherwise, n 2k 2 and hence, by Lemma 8, we have g 2 log n 4 log k + 2. PROOF OF THEOREM 2. Modify the Step 2 in our generic algorithm as follows: Modified Step 2. Find a shortest cycle C in G.Ifk n/2 and g > 6, then answer NO. Now use Corollary 2 and apply Lemma 7 over GFBVS(G, k) with Modified Step 2 to get Theorem Proofs of Theorems 3 and 4 We can generalize Theorem 1 and Corollary 1 to prove upper bound for girth in graphs having larger sized feedback vertex set (than assumed in Theorem 1). We will need the following result of Alon et al. [2002]. THEOREM 6[ALONETAL. 2002]. Any graph G = (V, E) on n vertices with average degree d, contains a cycle of length 2 log d 1 n + 2. Using this result, we prove Theorem 3. PROOF OF THEOREM 3. We can assume that ɛ<1/2 as otherwise the theorem follows from Corollary 1. Let G be a graph on n n 0 = 3 1/ɛ vertices with minimum degree 3 and having a feedback vertex set F of size k n 1 ɛ /3. As before, let T denote the induced forest on the remaining N = n k vertices in G. We construct a new multigraph G with V (G ) = F as follows. The edges of G are included as follows. For every a W (where W is the set obtained by applying Lemma 9 on T = G[V F]), we include an edge between x a and y a (x a = y a possibly) where {x a, y a } is the the pair associated with a in F in the proof of Theorem 1. By Lemma 9, we know that W is of size at least N/4. It follows that G has at least N/4 edges and hence its average degree is N/2k as V =k. Note that if G has a cycle of length at most g, then G has a cycle of length at most 3g, as any edge of the cycle in G can be replaced by a path of length at most 3 in the original graph G. It is possible that G has either a self-loop or two parallel edges joining the same pair of vertices in F. In that case, by way of construction, a self-loop or two parallel edges lead to a cycle of length at most 6 in G, thereby showing that g(g) 6 6/ɛ. Hence we assume, without loss of generality, that G is a simple graph with average degree at least N/2k. By Theorem 6, G has a cycle of length at most 2 log k (2 log (N/2k) 1 k) + 2 = log((n/2k) 1) + 2. This implies that G has a cycle of length at most 6 log k log((n/2k) 1) + 6.
9 Faster Fixed Parameter Tractable Algorithms 411 After substituting N = n k and k 1 3 n1 ɛ,weget g(g) 6 log(n1 ɛ /3) log ( 3 2 nɛ 3 ) (1 ɛ) log n < + 6 for n n log n ɛ 0. 6(1 ɛ) ɛ which is what we wanted to show. + 6 = 6 ɛ COROLLARY 3. Let G be a graph on n vertices with minimum degree 3 having a feedback vertex set of size at most k. Then, for every ɛ (0 <ɛ<1) such that n 3 1/ɛ,g(G) max{ 6 ɛ, 2log3k 1 ɛ }. PROOF. n (3k) 1 1 ɛ If k n 1 ɛ /3, then g 6/ɛ by the previous theorem. Otherwise, and hence, by Lemma 8, g 2log3k. 1 ɛ For fixed values of ɛ, the lower bound on n (required to apply Corollary 3) is also fixed. Hence, by applying Lemma 7 to GFBVS(G, k), with modified step 2, very similar to the one in the previous section, we get the following THEOREM 7. Let G be an undirected graph on n vertices. Then, for every fixed ɛ, 0 <ɛ<1, we can determine whether or not G has a fvs of size at most k, and find one if it exists, in O(max( 6 ɛ, 2log3k ) k n ω ) time. 1 ɛ 4.1. A FASTER ALGORITHM. In this section, we prove Theorem 4 by providing a faster FPT algorithm for undirected fvs problem. By the phrase, kernel of the problem, we mean an equivalent reduced instance I of the original problem instance I, where the size of I is bounded by some function of the parameter k. Note that Theorem 3 gives us a kernel of size (3k) 1/1 ɛ for every ɛ, 0<ɛ<1, in time O(( 6 ɛ )k n ω ). The new algorithm makes use of this reduction by choosing a proper ɛ and obtains a kernel. After that, it works by a brute-force approach instead of branching on a short cycle. The algorithm is presented below. As usual, G is an undirected multigraph and k 0 is an integer. Algorithm Mod-FBVS(G, k) Step 0:If G is acyclic answer YES or if k = 0 answer NO. Step 1:Apply Lemma 1 to get G. Step 2: Find a shortest cycle C in G. Let g be its length. Step 3(a): If g < 6( log k+log log k log ), then if for some v C, Mod-FBVS(G v, k 1) is true then log k answer YES and return {v} Mod-FBVS(G v, k 1), else answer NO. Step 3(b): Try all possible k-subsets of V (G) as a possible feedback vertex set of G and say YES, if any such subset is a fvs and return that subset, else say NO. Correctness of the algorithm Mod-FBVS follows from its description. When we reach Step 3(b) of the algorithm, we have g 6( log k+log log k log ). Then, we use log k Theorem 3 by choosing ɛ = log log k log k+log log k and observing that n 31/ɛ since by
10 412 V. RAMAN ET AL. Lemma 8, ( ) log k + log log k 2 log n g 6 log log k log n 3 ɛ n 8 1 ɛ 3 1 ɛ. Thus, we have 1 3 n1 ɛ < k n < (3k) 1 log k+log log k 1 ɛ n < (3k) log k 9k log k 12 log k So either the girth is bounded by log log k +6 or we have a kernel of size 9k log k. So the time complexity of the algorithm is bounded by: { ( ) 12 log k k ( 9k log k max log log k + 6 n ω, )n 2 (9e } log k) k n 2. k Since the first function is asymptotically bigger, we use it to bound the time complexity. Combining all these, we complete the proof of Theorem Weighted Feedback Vertex Set The WEIGHTED FEEDBACK VERTEX SET problem (WFVS for short) is: given an undirected graph G = (V, E), a weight function w : V R +, and k R +, find a feedback vertex set F with total weight at most k. The weight of F is defined as the sum of weights of v F. In the weighted case, the preprocessing described in Lemma 1 cannot be applied as such because it is possible that every minimum weight fvs contains some degree two vertex. However, if we assume that w(v) 1 for every v, then we can modify the preprocessing as follows. Given a graph G with a vertex weight function w, we repeatedly remove vertices of degree 1 to transform G into G with minimum degree 2. Then, for every path P in G joining two vertices x and y of larger ( 3) degrees such that each internal vertex of P has degree two, we replace P by the path xzy where z is an internal vertex of P having minimum weight among all internal vertices of P. Let G be the resulting weighted graph. The weights of vertices surviving in G are the same assigned to them in G. Now it is easy to verify that G has a feedback vertex set of weight at most k if and only if G has a fvs of weight at most k. Let us call such a graph having minimum degree 2 with each degree 2 vertex connected to two vertices of larger degree as a branchy graph. It is not difficult to adapt Theorem 3 for branchy graphs and obtain its weighted version that shows that if a weighted branchy graph G has a fvs of weight at most 1 3 n1 ɛ, where 0 <ɛ<1, then g(g) < 12 ɛ, provided n 3 1 ɛ. For the weighted case, we modify the algorithm Mod-FBVS by reducing G to a branchy graph (as described before) in Step 1. We then look for a cycle of length ( ) log k + log log k g < 12 log log k
11 Faster Fixed Parameter Tractable Algorithms 413 in Step 3(a) of the algorithm. As before, the algorithm either finds a short cycle and branches on the vertices of the cycle or applies brute force. In the first case, since each vertex picked for branching has weight at least 1, the depth of the recursion is at most k. Also, we can show that in Step 3(b), n = O(k log k), as in the unweighted case by using the fact that every vertex has weight at least 1. Thus, we have an analogue of Theorem 4 THEOREM 8. Given an undirected graph G = (V, E), a positive real parameter k and a weight function w from V to R + such that for every v V,w(v) 1, we can determine whether or not G has a feedback vertex set of weight at most k in time ( ( ) ) 24 log k k O log log k + 12 n ω. General-WFVS is the problem of finding a fvs of weight at most k, when the weights of the vertices are arbitrary real numbers. We show that the problem is not fixed parameter tractable unless P = NP by proving that it is NP-complete for any fixed k > 0. We can give a direct reduction from the NP-complete, unweighted fvs problem on undirected graphs to General-WFVS with k = 1, by defining the weight function w to be w(v) = 1/k for all v V. In fact this implies that there cannot be a f (k)n O(1) or even n O(k) time algorithm for General-WFVS problem unless P = NP. THEOREM 9. P = NP. General-WFVS problem is not fixed parameter tractable unless 6. Conclusions and Further Work In this article, we proved that graphs with minimum degree 3 having a small fvs possess short cycles. Using this, we obtained faster algorithms for parameterized feedback vertex set problem on undirected graphs. Our main result achieves a significant improvement in the dependence on k (the parameter) of the running 12 log k time. We get an algorithm with O(( log log k + 6)k n ω ) running time. Based on the preliminary report of our work, a number of advances have been made on reducing the f (k) for the fvs algorithm. Dehne et al. [2005] have recently obtained an algorithm for fvs that runs in time O(c k n 3 ), where c = Independently, Guo et al. [2005] obtained an O(c k mn) time algorithm for the fvs problem, where c = Apart from its application to the design of FPT algorithms, our Lemma 9 and Theorems 1 and 3 may be of independent interest in extremal graph theory. Also, all of the recent improvements on designing FPT algorithms are based (in part) directly or indirectly on the ideas used in this article. Theorem 3 essentially shows that the size of the problem kernel for the feedback vertex set problem is O(k 1+2ɛ ) for fixed ɛ 1/2. This is because we can reduce the problem size to O(k 1+2ɛ )ino(( 6 ɛ )k n ω ) time. In particular, when ɛ = 1/2, Corollary 1 gives us a kernel of size O(k 2 )ino(6 k n ω ) time. We can use this kernel in connection with newly developed algorithms by first branching on cycles of length at most 6 and using the improved c k algorithms only when girth of the graph
12 414 V. RAMAN ET AL. exceeds 6 in which case the instance size is at most O(k 2 ). This will give a fixed parameter tractable algorithm with time complexity O(6 k n ω + (10.567) k k 6 ) using the algorithm developed in Dehne et al. [2005]. Following questions are interesting and still remain unanswered. Can we get a polynomial size kernel for feedback vertex set in polynomial time? 2 Is the feedback vertex set problem fixed parameter tractable in directed graphs? Is the feedback vertex set problem fixed parameter tractable even in planar directed graphs? ACKNOWLEDGMENTS. We thank R. Balasubramanian, Mike Fellows, Vinod Parthasarathy and P. Paulraja for fruitful discussions and comments on earlier drafts of the article, and Santosh Vempala for suggesting the direction for generalization in Theorem 3. We thank the anonymous referees for several useful comments; the version of the proof of Lemma 9 in this article is due to one of them and is simpler than our earlier proof. REFERENCES ALBER, J., BODLAENDER, H. L., FERNAU, H., KLOKS, T.,AND NIEDERMEIER, R Fixed parameter algorithms for dominating set and related problems on planar graphs. Algorithmica 33, 4, ALBER, J., FAN, H., FELLOWS, M. R., FERNAU, H., NIEDERMEIER, R., ROSAMOND, F. A., AND STEGE, U Refined search tree technique for dominating set on planar graphs. In Proceedings of 26th International Symposium on Mathematical Foundations of Computer Science (MFCS). Lecture Notes in Computer Science, vol Springer-Verlag, New York, ALON, N., HORRAY, S., AND LINIAL, N The moore bound for irregular graphs. Graphs Combinat. 18, BAR-YEHUDA, R., GEIGER, D., NAOR, J., AND ROTH, R. M Approximation algorithms for the feedback vertex set problem with applications to constraint satisfaction and bayesian inference. SIAM J. Comput. 27, 4, BECKER, A., BAR-YEHUDA, R., AND GEIGER, D Randomized algorithms for the loop cutset problem. J. Artif. Intel. Research 12, CORMEN, T. H., LEISERSON, C. E., RIVEST, R. L., AND STEIN, C Introduction to Algorithms, Second Edition. The MIT Press and McGraw-Hill, New York. DEHNE, F. K. H. A., FELLOWS, M. R., LANGSTON, M. A., ROSAMOND, F. A., AND STEVENS, K An O(2 O(k) n 3 ) FPT algorithm for the undirected feedback vertex set problem. In Proceedings of 11th International Computing and Combinatorics Conference (COCOON). Lecture Notes in Computer Science, vol Springer-Verlag, New York, DOWNEY, R.,AND FELLOWS, M Parameterized Complexity. Springer-Verlag, New York. ERDÖS, P., AND POSA, L On the maximal number of disjoint circuits of a graph. Publ. Math. Debrecen 9, ESTIVILL-CASTRO, V., FELLOWS, M. R., LANGSTON, M. A.,AND ROSAMOND, F. A The undirected feedback vertex set problem has a poly(k) kernel. In Proceedings of 2nd International Workshop on Parameterized and Exact Computation (IWPEC). Lecture Notes in Computer Science, Springer-Verlag, New York. FOMIN, F. V., AND THILIKOS, D. M Dominating sets in planar graphs: branch-width and exponential speed-up. In Proceedings of the 14th Annual ACM-SIAM Symposium on Discrete Algorithms (SODA). ACM, New York, GUO, J., GRAMM, J., HÜFFNER, F., NIEDERMEIER, R., AND WERNICKE, S Improved fixed-parameter algorithms for two feedback set problems. In Proceedings of 9th Workshop on Algorithms and Data Structures (WADS). Lecture Notes in Computer Science, vol Springer-Verlag, New York, Recently, Estivill-Castro et al. [2006] have obtained an O(k 11 ) size kernel for the parameterized feedback vertex set problem in polynomial time.
13 Faster Fixed Parameter Tractable Algorithms 415 ITAI, A., AND RODEH, M Finding a minimum circuit in a graph. SIAM J. Comput. 7, 4, KANJ, I. A., PELSMAJER, M. J., AND SCHAEFER, M Parameterized algorithms for feedback vertex set. In Proceedings of 1st International Workshop on Parameterized and Exact Computation (IWPEC). Lecture Notes in Computer Science, vol Springer-Verlag, New York, KANJ, I. A., AND PERKOVIC, L Improved parameterized algorithms for planar dominating set. In Proceedings of 27th International Symposium on Mathematical Foundations of Computer Science (MFCS). Lecture Notes in Computer Science, vol Springer-Verlag, New York, RAMAN, V., SAURABH, S., AND SUBRAMANIAN, C. R Faster fixed parameter tractable algorithms for undirected feedback vertex set. In Proceedings of 13th Annual International Symposium on Algorithms and Computation (ISAAC). Lecture Notes in Computer Science, vol Springer-Verlag, New York, RAMAN, V., SAURABH, S., AND SUBRAMANIAN, C. R Faster algorithms for feedback vertex set. In Proceedings of 2nd Brazilian Symposium on Graphs, Algorithms, and Combinatorics (GRACO). Electronic Notes in Discrete Mathematics, vol RECEIVED NOVEMBER 2004; REVISED JUNE 2005 AND FEBRUARY 2006; ACCEPTED FEBRUARY 2006 ACM Transactions on Algorithms, Vol. 2, No. 3, July 2006.
Short Cycles make W-hard problems hard: FPT algorithms for W-hard Problems in Graphs with no short Cycles
Short Cycles make W-hard problems hard: FPT algorithms for W-hard Problems in Graphs with no short Cycles Venkatesh Raman and Saket Saurabh The Institute of Mathematical Sciences, Chennai 600 113. {vraman
Subset feedback vertex set is fixed parameter tractable
Subset feedback vertex set is fixed parameter tractable Marek Cygan Marcin Pilipczuk Michał Pilipczuk Jakub Onufry Wojtaszczyk Abstract The FEEDBACK VERTEX SET problem, given an undirected graph G and
Even Faster Algorithm for Set Splitting!
Even Faster Algorithm for Set Splitting! Daniel Lokshtanov Saket Saurabh Abstract In the p-set Splitting problem we are given a universe U, a family F of subsets of U and a positive integer k and the objective
8.1 Min Degree Spanning Tree
CS880: Approximations Algorithms Scribe: Siddharth Barman Lecturer: Shuchi Chawla Topic: Min Degree Spanning Tree Date: 02/15/07 In this lecture we give a local search based algorithm for the Min Degree
Error Compensation in Leaf Power Problems
Error Compensation in Leaf Power Problems Michael Dom Jiong Guo Falk Hüffner Rolf Niedermeier April 6, 2005 Abstract The k-leaf Power recognition problem is a particular case of graph power problems: For
Approximated Distributed Minimum Vertex Cover Algorithms for Bounded Degree Graphs
Approximated Distributed Minimum Vertex Cover Algorithms for Bounded Degree Graphs Yong Zhang 1.2, Francis Y.L. Chin 2, and Hing-Fung Ting 2 1 College of Mathematics and Computer Science, Hebei University,
1 Definitions. Supplementary Material for: Digraphs. Concept graphs
Supplementary Material for: van Rooij, I., Evans, P., Müller, M., Gedge, J. & Wareham, T. (2008). Identifying Sources of Intractability in Cognitive Models: An Illustration using Analogical Structure Mapping.
Lecture 15 An Arithmetic Circuit Lowerbound and Flows in Graphs
CSE599s: Extremal Combinatorics November 21, 2011 Lecture 15 An Arithmetic Circuit Lowerbound and Flows in Graphs Lecturer: Anup Rao 1 An Arithmetic Circuit Lower Bound An arithmetic circuit is just like
SHARP BOUNDS FOR THE SUM OF THE SQUARES OF THE DEGREES OF A GRAPH
31 Kragujevac J. Math. 25 (2003) 31 49. SHARP BOUNDS FOR THE SUM OF THE SQUARES OF THE DEGREES OF A GRAPH Kinkar Ch. Das Department of Mathematics, Indian Institute of Technology, Kharagpur 721302, W.B.,
High degree graphs contain large-star factors
High degree graphs contain large-star factors Dedicated to László Lovász, for his 60th birthday Noga Alon Nicholas Wormald Abstract We show that any finite simple graph with minimum degree d contains a
Institut für Informatik Lehrstuhl Theoretische Informatik I / Komplexitätstheorie. An Iterative Compression Algorithm for Vertex Cover
Friedrich-Schiller-Universität Jena Institut für Informatik Lehrstuhl Theoretische Informatik I / Komplexitätstheorie Studienarbeit An Iterative Compression Algorithm for Vertex Cover von Thomas Peiselt
A 2-factor in which each cycle has long length in claw-free graphs
A -factor in which each cycle has long length in claw-free graphs Roman Čada Shuya Chiba Kiyoshi Yoshimoto 3 Department of Mathematics University of West Bohemia and Institute of Theoretical Computer Science
Finding and counting given length cycles
Finding and counting given length cycles Noga Alon Raphael Yuster Uri Zwick Abstract We present an assortment of methods for finding and counting simple cycles of a given length in directed and undirected
Discrete Mathematics & Mathematical Reasoning Chapter 10: Graphs
Discrete Mathematics & Mathematical Reasoning Chapter 10: Graphs Kousha Etessami U. of Edinburgh, UK Kousha Etessami (U. of Edinburgh, UK) Discrete Mathematics (Chapter 6) 1 / 13 Overview Graphs and Graph
Analysis of Algorithms, I
Analysis of Algorithms, I CSOR W4231.002 Eleni Drinea Computer Science Department Columbia University Thursday, February 26, 2015 Outline 1 Recap 2 Representing graphs 3 Breadth-first search (BFS) 4 Applications
On the independence number of graphs with maximum degree 3
On the independence number of graphs with maximum degree 3 Iyad A. Kanj Fenghui Zhang Abstract Let G be an undirected graph with maximum degree at most 3 such that G does not contain any of the three graphs
Exact Polynomial-time Algorithm for the Clique Problem and P = NP for Clique Problem
xact Polynomial-time Algorithm for the Clique Problem and P = NP for Clique Problem Kanak Chandra Bora Department of Computer Science & ngineering Royal School of ngineering & Technology, Betkuchi, Guwahati-7810,
Small Maximal Independent Sets and Faster Exact Graph Coloring
Small Maximal Independent Sets and Faster Exact Graph Coloring David Eppstein Univ. of California, Irvine Dept. of Information and Computer Science The Exact Graph Coloring Problem: Given an undirected
Outline. NP-completeness. When is a problem easy? When is a problem hard? Today. Euler Circuits
Outline NP-completeness Examples of Easy vs. Hard problems Euler circuit vs. Hamiltonian circuit Shortest Path vs. Longest Path 2-pairs sum vs. general Subset Sum Reducing one problem to another Clique
Approximation Algorithms
Approximation Algorithms or: How I Learned to Stop Worrying and Deal with NP-Completeness Ong Jit Sheng, Jonathan (A0073924B) March, 2012 Overview Key Results (I) General techniques: Greedy algorithms
Connected Identifying Codes for Sensor Network Monitoring
Connected Identifying Codes for Sensor Network Monitoring Niloofar Fazlollahi, David Starobinski and Ari Trachtenberg Dept. of Electrical and Computer Engineering Boston University, Boston, MA 02215 Email:
The Open University s repository of research publications and other research outputs
Open Research Online The Open University s repository of research publications and other research outputs The degree-diameter problem for circulant graphs of degree 8 and 9 Journal Article How to cite:
Discrete Applied Mathematics. The firefighter problem with more than one firefighter on trees
Discrete Applied Mathematics 161 (2013) 899 908 Contents lists available at SciVerse ScienceDirect Discrete Applied Mathematics journal homepage: www.elsevier.com/locate/dam The firefighter problem with
The Goldberg Rao Algorithm for the Maximum Flow Problem
The Goldberg Rao Algorithm for the Maximum Flow Problem COS 528 class notes October 18, 2006 Scribe: Dávid Papp Main idea: use of the blocking flow paradigm to achieve essentially O(min{m 2/3, n 1/2 }
On Integer Additive Set-Indexers of Graphs
On Integer Additive Set-Indexers of Graphs arxiv:1312.7672v4 [math.co] 2 Mar 2014 N K Sudev and K A Germina Abstract A set-indexer of a graph G is an injective set-valued function f : V (G) 2 X such that
An Approximation Algorithm for Bounded Degree Deletion
An Approximation Algorithm for Bounded Degree Deletion Tomáš Ebenlendr Petr Kolman Jiří Sgall Abstract Bounded Degree Deletion is the following generalization of Vertex Cover. Given an undirected graph
! Solve problem to optimality. ! Solve problem in poly-time. ! Solve arbitrary instances of the problem. #-approximation algorithm.
Approximation Algorithms 11 Approximation Algorithms Q Suppose I need to solve an NP-hard problem What should I do? A Theory says you're unlikely to find a poly-time algorithm Must sacrifice one of three
On the k-path cover problem for cacti
On the k-path cover problem for cacti Zemin Jin and Xueliang Li Center for Combinatorics and LPMC Nankai University Tianjin 300071, P.R. China [email protected], [email protected] Abstract In this paper we
ON INDUCED SUBGRAPHS WITH ALL DEGREES ODD. 1. Introduction
ON INDUCED SUBGRAPHS WITH ALL DEGREES ODD A.D. SCOTT Abstract. Gallai proved that the vertex set of any graph can be partitioned into two sets, each inducing a subgraph with all degrees even. We prove
Distributed Computing over Communication Networks: Maximal Independent Set
Distributed Computing over Communication Networks: Maximal Independent Set What is a MIS? MIS An independent set (IS) of an undirected graph is a subset U of nodes such that no two nodes in U are adjacent.
OPTIMAL DESIGN OF DISTRIBUTED SENSOR NETWORKS FOR FIELD RECONSTRUCTION
OPTIMAL DESIGN OF DISTRIBUTED SENSOR NETWORKS FOR FIELD RECONSTRUCTION Sérgio Pequito, Stephen Kruzick, Soummya Kar, José M. F. Moura, A. Pedro Aguiar Department of Electrical and Computer Engineering
Social Media Mining. Graph Essentials
Graph Essentials Graph Basics Measures Graph and Essentials Metrics 2 2 Nodes and Edges A network is a graph nodes, actors, or vertices (plural of vertex) Connections, edges or ties Edge Node Measures
ON THE COMPLEXITY OF THE GAME OF SET. {kamalika,pbg,dratajcz,hoeteck}@cs.berkeley.edu
ON THE COMPLEXITY OF THE GAME OF SET KAMALIKA CHAUDHURI, BRIGHTEN GODFREY, DAVID RATAJCZAK, AND HOETECK WEE {kamalika,pbg,dratajcz,hoeteck}@cs.berkeley.edu ABSTRACT. Set R is a card game played with a
Cost Model: Work, Span and Parallelism. 1 The RAM model for sequential computation:
CSE341T 08/31/2015 Lecture 3 Cost Model: Work, Span and Parallelism In this lecture, we will look at how one analyze a parallel program written using Cilk Plus. When we analyze the cost of an algorithm
Lecture 1: Course overview, circuits, and formulas
Lecture 1: Course overview, circuits, and formulas Topics in Complexity Theory and Pseudorandomness (Spring 2013) Rutgers University Swastik Kopparty Scribes: John Kim, Ben Lund 1 Course Information Swastik
Cycles and clique-minors in expanders
Cycles and clique-minors in expanders Benny Sudakov UCLA and Princeton University Expanders Definition: The vertex boundary of a subset X of a graph G: X = { all vertices in G\X with at least one neighbor
136 CHAPTER 4. INDUCTION, GRAPHS AND TREES
136 TER 4. INDUCTION, GRHS ND TREES 4.3 Graphs In this chapter we introduce a fundamental structural idea of discrete mathematics, that of a graph. Many situations in the applications of discrete mathematics
Ph.D. Thesis. Judit Nagy-György. Supervisor: Péter Hajnal Associate Professor
Online algorithms for combinatorial problems Ph.D. Thesis by Judit Nagy-György Supervisor: Péter Hajnal Associate Professor Doctoral School in Mathematics and Computer Science University of Szeged Bolyai
Large induced subgraphs with all degrees odd
Large induced subgraphs with all degrees odd A.D. Scott Department of Pure Mathematics and Mathematical Statistics, University of Cambridge, England Abstract: We prove that every connected graph of order
V. Adamchik 1. Graph Theory. Victor Adamchik. Fall of 2005
V. Adamchik 1 Graph Theory Victor Adamchik Fall of 2005 Plan 1. Basic Vocabulary 2. Regular graph 3. Connectivity 4. Representing Graphs Introduction A.Aho and J.Ulman acknowledge that Fundamentally, computer
All trees contain a large induced subgraph having all degrees 1 (mod k)
All trees contain a large induced subgraph having all degrees 1 (mod k) David M. Berman, A.J. Radcliffe, A.D. Scott, Hong Wang, and Larry Wargo *Department of Mathematics University of New Orleans New
IE 680 Special Topics in Production Systems: Networks, Routing and Logistics*
IE 680 Special Topics in Production Systems: Networks, Routing and Logistics* Rakesh Nagi Department of Industrial Engineering University at Buffalo (SUNY) *Lecture notes from Network Flows by Ahuja, Magnanti
Exponential time algorithms for graph coloring
Exponential time algorithms for graph coloring Uriel Feige Lecture notes, March 14, 2011 1 Introduction Let [n] denote the set {1,..., k}. A k-labeling of vertices of a graph G(V, E) is a function V [k].
Lecture 7: NP-Complete Problems
IAS/PCMI Summer Session 2000 Clay Mathematics Undergraduate Program Basic Course on Computational Complexity Lecture 7: NP-Complete Problems David Mix Barrington and Alexis Maciel July 25, 2000 1. Circuit
Page 1. CSCE 310J Data Structures & Algorithms. CSCE 310J Data Structures & Algorithms. P, NP, and NP-Complete. Polynomial-Time Algorithms
CSCE 310J Data Structures & Algorithms P, NP, and NP-Complete Dr. Steve Goddard [email protected] CSCE 310J Data Structures & Algorithms Giving credit where credit is due:» Most of the lecture notes
! Solve problem to optimality. ! Solve problem in poly-time. ! Solve arbitrary instances of the problem. !-approximation algorithm.
Approximation Algorithms Chapter Approximation Algorithms Q Suppose I need to solve an NP-hard problem What should I do? A Theory says you're unlikely to find a poly-time algorithm Must sacrifice one of
JUST-IN-TIME SCHEDULING WITH PERIODIC TIME SLOTS. Received December May 12, 2003; revised February 5, 2004
Scientiae Mathematicae Japonicae Online, Vol. 10, (2004), 431 437 431 JUST-IN-TIME SCHEDULING WITH PERIODIC TIME SLOTS Ondřej Čepeka and Shao Chin Sung b Received December May 12, 2003; revised February
Graphical degree sequences and realizations
swap Graphical and realizations Péter L. Erdös Alfréd Rényi Institute of Mathematics Hungarian Academy of Sciences MAPCON 12 MPIPKS - Dresden, May 15, 2012 swap Graphical and realizations Péter L. Erdös
CS 598CSC: Combinatorial Optimization Lecture date: 2/4/2010
CS 598CSC: Combinatorial Optimization Lecture date: /4/010 Instructor: Chandra Chekuri Scribe: David Morrison Gomory-Hu Trees (The work in this section closely follows [3]) Let G = (V, E) be an undirected
A simpler and better derandomization of an approximation algorithm for Single Source Rent-or-Buy
A simpler and better derandomization of an approximation algorithm for Single Source Rent-or-Buy David P. Williamson Anke van Zuylen School of Operations Research and Industrial Engineering, Cornell University,
Online Bipartite Perfect Matching With Augmentations
Online Bipartite Perfect Matching With Augmentations Kamalika Chaudhuri, Constantinos Daskalakis, Robert D. Kleinberg, and Henry Lin Information Theory and Applications Center, U.C. San Diego Email: [email protected]
Bicolored Shortest Paths in Graphs with Applications to Network Overlay Design
Bicolored Shortest Paths in Graphs with Applications to Network Overlay Design Hongsik Choi and Hyeong-Ah Choi Department of Electrical Engineering and Computer Science George Washington University Washington,
Polynomial Degree and Lower Bounds in Quantum Complexity: Collision and Element Distinctness with Small Range
THEORY OF COMPUTING, Volume 1 (2005), pp. 37 46 http://theoryofcomputing.org Polynomial Degree and Lower Bounds in Quantum Complexity: Collision and Element Distinctness with Small Range Andris Ambainis
The positive minimum degree game on sparse graphs
The positive minimum degree game on sparse graphs József Balogh Department of Mathematical Sciences University of Illinois, USA [email protected] András Pluhár Department of Computer Science University
Global secure sets of trees and grid-like graphs. Yiu Yu Ho
Global secure sets of trees and grid-like graphs by Yiu Yu Ho B.S. University of Central Florida, 2006 M.S. University of Central Florida, 2010 A dissertation submitted in partial fulfillment of the requirements
Guessing Game: NP-Complete?
Guessing Game: NP-Complete? 1. LONGEST-PATH: Given a graph G = (V, E), does there exists a simple path of length at least k edges? YES 2. SHORTEST-PATH: Given a graph G = (V, E), does there exists a simple
Analysis of Approximation Algorithms for k-set Cover using Factor-Revealing Linear Programs
Analysis of Approximation Algorithms for k-set Cover using Factor-Revealing Linear Programs Stavros Athanassopoulos, Ioannis Caragiannis, and Christos Kaklamanis Research Academic Computer Technology Institute
Topology-based network security
Topology-based network security Tiit Pikma Supervised by Vitaly Skachek Research Seminar in Cryptography University of Tartu, Spring 2013 1 Introduction In both wired and wireless networks, there is the
Generalized Induced Factor Problems
Egerváry Research Group on Combinatorial Optimization Technical reports TR-2002-07. Published by the Egrerváry Research Group, Pázmány P. sétány 1/C, H 1117, Budapest, Hungary. Web site: www.cs.elte.hu/egres.
MATHEMATICAL ENGINEERING TECHNICAL REPORTS. An Improved Approximation Algorithm for the Traveling Tournament Problem
MATHEMATICAL ENGINEERING TECHNICAL REPORTS An Improved Approximation Algorithm for the Traveling Tournament Problem Daisuke YAMAGUCHI, Shinji IMAHORI, Ryuhei MIYASHIRO, Tomomi MATSUI METR 2009 42 September
Cycles in a Graph Whose Lengths Differ by One or Two
Cycles in a Graph Whose Lengths Differ by One or Two J. A. Bondy 1 and A. Vince 2 1 LABORATOIRE DE MATHÉMATIQUES DISCRÉTES UNIVERSITÉ CLAUDE-BERNARD LYON 1 69622 VILLEURBANNE, FRANCE 2 DEPARTMENT OF MATHEMATICS
On an anti-ramsey type result
On an anti-ramsey type result Noga Alon, Hanno Lefmann and Vojtĕch Rödl Abstract We consider anti-ramsey type results. For a given coloring of the k-element subsets of an n-element set X, where two k-element
SIMS 255 Foundations of Software Design. Complexity and NP-completeness
SIMS 255 Foundations of Software Design Complexity and NP-completeness Matt Welsh November 29, 2001 [email protected] 1 Outline Complexity of algorithms Space and time complexity ``Big O'' notation Complexity
Graphs without proper subgraphs of minimum degree 3 and short cycles
Graphs without proper subgraphs of minimum degree 3 and short cycles Lothar Narins, Alexey Pokrovskiy, Tibor Szabó Department of Mathematics, Freie Universität, Berlin, Germany. August 22, 2014 Abstract
A Turán Type Problem Concerning the Powers of the Degrees of a Graph
A Turán Type Problem Concerning the Powers of the Degrees of a Graph Yair Caro and Raphael Yuster Department of Mathematics University of Haifa-ORANIM, Tivon 36006, Israel. AMS Subject Classification:
Why? A central concept in Computer Science. Algorithms are ubiquitous.
Analysis of Algorithms: A Brief Introduction Why? A central concept in Computer Science. Algorithms are ubiquitous. Using the Internet (sending email, transferring files, use of search engines, online
Definition 11.1. Given a graph G on n vertices, we define the following quantities:
Lecture 11 The Lovász ϑ Function 11.1 Perfect graphs We begin with some background on perfect graphs. graphs. First, we define some quantities on Definition 11.1. Given a graph G on n vertices, we define
Cycle transversals in bounded degree graphs
Electronic Notes in Discrete Mathematics 35 (2009) 189 195 www.elsevier.com/locate/endm Cycle transversals in bounded degree graphs M. Groshaus a,2,3 P. Hell b,3 S. Klein c,1,3 L. T. Nogueira d,1,3 F.
Every tree contains a large induced subgraph with all degrees odd
Every tree contains a large induced subgraph with all degrees odd A.J. Radcliffe Carnegie Mellon University, Pittsburgh, PA A.D. Scott Department of Pure Mathematics and Mathematical Statistics University
Solving the Firefighter Problem With a Bipartite Graph
Making life easier for firefighters Fedor V. Fomin, Pinar Heggernes, and Erik Jan van Leeuwen Department of Informatics, University of Bergen, Norway {fedor.fomin, pinar.heggernes, e.j.van.leeuwen}@ii.uib.no
Mean Ramsey-Turán numbers
Mean Ramsey-Turán numbers Raphael Yuster Department of Mathematics University of Haifa at Oranim Tivon 36006, Israel Abstract A ρ-mean coloring of a graph is a coloring of the edges such that the average
Single machine parallel batch scheduling with unbounded capacity
Workshop on Combinatorics and Graph Theory 21th, April, 2006 Nankai University Single machine parallel batch scheduling with unbounded capacity Yuan Jinjiang Department of mathematics, Zhengzhou University
Labeling outerplanar graphs with maximum degree three
Labeling outerplanar graphs with maximum degree three Xiangwen Li 1 and Sanming Zhou 2 1 Department of Mathematics Huazhong Normal University, Wuhan 430079, China 2 Department of Mathematics and Statistics
Determination of the normalization level of database schemas through equivalence classes of attributes
Computer Science Journal of Moldova, vol.17, no.2(50), 2009 Determination of the normalization level of database schemas through equivalence classes of attributes Cotelea Vitalie Abstract In this paper,
A Note on Maximum Independent Sets in Rectangle Intersection Graphs
A Note on Maximum Independent Sets in Rectangle Intersection Graphs Timothy M. Chan School of Computer Science University of Waterloo Waterloo, Ontario N2L 3G1, Canada [email protected] September 12,
Frans J.C.T. de Ruiter, Norman L. Biggs Applications of integer programming methods to cages
Frans J.C.T. de Ruiter, Norman L. Biggs Applications of integer programming methods to cages Article (Published version) (Refereed) Original citation: de Ruiter, Frans and Biggs, Norman (2015) Applications
Invitation to Fixed-Parameter Algorithms
Rolf Niedermeier Invitation to Fixed-Parameter Algorithms October 23, 2002 Preface This work is based on my occupation with parameterized complexity and fixed-parameter algorithms which began more than
Removing Even Crossings
EuroComb 2005 DMTCS proc. AE, 2005, 105 110 Removing Even Crossings Michael J. Pelsmajer 1, Marcus Schaefer 2 and Daniel Štefankovič 2 1 Department of Applied Mathematics, Illinois Institute of Technology,
Max Flow, Min Cut, and Matchings (Solution)
Max Flow, Min Cut, and Matchings (Solution) 1. The figure below shows a flow network on which an s-t flow is shown. The capacity of each edge appears as a label next to the edge, and the numbers in boxes
Introduction to Algorithms. Part 3: P, NP Hard Problems
Introduction to Algorithms Part 3: P, NP Hard Problems 1) Polynomial Time: P and NP 2) NP-Completeness 3) Dealing with Hard Problems 4) Lower Bounds 5) Books c Wayne Goddard, Clemson University, 2004 Chapter
Integer factorization is in P
Integer factorization is in P Yuly Shipilevsky Toronto, Ontario, Canada E-mail address: [email protected] Abstract A polynomial-time algorithm for integer factorization, wherein integer factorization
BOUNDARY EDGE DOMINATION IN GRAPHS
BULLETIN OF THE INTERNATIONAL MATHEMATICAL VIRTUAL INSTITUTE ISSN (p) 0-4874, ISSN (o) 0-4955 www.imvibl.org /JOURNALS / BULLETIN Vol. 5(015), 197-04 Former BULLETIN OF THE SOCIETY OF MATHEMATICIANS BANJA
Computer Science Department. Technion - IIT, Haifa, Israel. Itai and Rodeh [IR] have proved that for any 2-connected graph G and any vertex s G there
- 1 - THREE TREE-PATHS Avram Zehavi Alon Itai Computer Science Department Technion - IIT, Haifa, Israel Abstract Itai and Rodeh [IR] have proved that for any 2-connected graph G and any vertex s G there
Generating models of a matched formula with a polynomial delay
Generating models of a matched formula with a polynomial delay Petr Savicky Institute of Computer Science, Academy of Sciences of Czech Republic, Pod Vodárenskou Věží 2, 182 07 Praha 8, Czech Republic
Offline sorting buffers on Line
Offline sorting buffers on Line Rohit Khandekar 1 and Vinayaka Pandit 2 1 University of Waterloo, ON, Canada. email: [email protected] 2 IBM India Research Lab, New Delhi. email: [email protected]
A REMARK ON ALMOST MOORE DIGRAPHS OF DEGREE THREE. 1. Introduction and Preliminaries
Acta Math. Univ. Comenianae Vol. LXVI, 2(1997), pp. 285 291 285 A REMARK ON ALMOST MOORE DIGRAPHS OF DEGREE THREE E. T. BASKORO, M. MILLER and J. ŠIRÁŇ Abstract. It is well known that Moore digraphs do
CMSC 858T: Randomized Algorithms Spring 2003 Handout 8: The Local Lemma
CMSC 858T: Randomized Algorithms Spring 2003 Handout 8: The Local Lemma Please Note: The references at the end are given for extra reading if you are interested in exploring these ideas further. You are
Total colorings of planar graphs with small maximum degree
Total colorings of planar graphs with small maximum degree Bing Wang 1,, Jian-Liang Wu, Si-Feng Tian 1 Department of Mathematics, Zaozhuang University, Shandong, 77160, China School of Mathematics, Shandong
Semi-Matchings for Bipartite Graphs and Load Balancing
Semi-Matchings for Bipartite Graphs and Load Balancing Nicholas J. A. Harvey Richard E. Ladner László Lovász Tami Tamir Abstract We consider the problem of fairly matching the left-hand vertices of a bipartite
GRAPH THEORY LECTURE 4: TREES
GRAPH THEORY LECTURE 4: TREES Abstract. 3.1 presents some standard characterizations and properties of trees. 3.2 presents several different types of trees. 3.7 develops a counting method based on a bijection
Online and Offline Selling in Limit Order Markets
Online and Offline Selling in Limit Order Markets Kevin L. Chang 1 and Aaron Johnson 2 1 Yahoo Inc. [email protected] 2 Yale University [email protected] Abstract. Completely automated electronic
