Tell me more ×
Theoretical Computer Science Stack Exchange is a question and answer site for theoretical computer scientists and researchers in related fields. It's 100% free, no registration required.

It's well known that planar graphs from a closed-family with forbidden minors $K_{3,3}, K_{5}$, graphs with bounded treewidth also are closed family graphs with no $H_{k}$ as minor.

I assume that graphs with bounded max cut form closed family graphs. Given arbitrarily graph $G$ that doesn't contain $H$ as a minor, how to find max cut approximately.

Thanks!

Addendum:

The relevant topic can be found on On the complexity of the Maximum Cut problem Chapter 6. Graphs with bounded treewidth. The PTAS begins with making modification to the tree decomposition without increasing it's treewidth.

1) $T$ is a binary tree.

2) If a node $i \in I$ has two children $j_{1}$ and $j_{2}$, then $X_{i}=X_{j1}=X_{j2}$.

3) If a node $i \in I$ has one child $j$, then either $X_{j} \subset X_{i}$ and $|X_{i}-X_{j}|=1$, or $X_{i} \subset X_{j}$ and $|X_{j}-X_{i}|=1$.

In my opinion it's very strong modification, and actually I don't get the idea behind this modification. On the 2th condition if I understood rigth, if there is a node with two neighbors then all of then contain actually the same set of the vertexes, but what for?

share|improve this question
2  
it sounds like you're now asking another question. If the answers given thus far satisfy you, maybe you should mark one of them and ask a new question. Also, a link to the paper you're referring to would be helpful – Suresh Venkat Jan 30 '12 at 21:25
1  
Also, $\epsilon \ne \in$. – JɛffE Jan 31 '12 at 2:14

2 Answers

up vote 16 down vote accepted

MaxCut can be solved in polynomial time in $K_5$-minor-free graphs but is NP-hard in $K_6$-minor-free graphs (in particular, for apex graphs of planar graphs) [Barahona 1983].

See also this WG 2010 paper and slides by Marcin Kamiński.

share|improve this answer
Thanks for the answer. The paper contains reference to another paper by Hans L. Bodlaender and Klaus Jansen. On the complexity of the maximum cut problem. Which is actually elaborate this issue much better – fog Jan 29 '12 at 20:18

There is a PTAS for H-minor-free classes of graphs that follows from the paper Algorithmic graph minor theory: Decomposition, approximation, and coloring by Erik D. Demaine, Mohammad Taghi Hajiaghayi, and Ken-ichi Kawarabayashi in FOCS 2005.

share|improve this answer
Thanks for the answer. Unfortunately I didn't find PTAS for maximization problem. I took the paper from here Algorithmic graph minor theory. It has topic 3.2 on minimization schema, but maximization schema comes without the proof – fog Jan 29 '12 at 20:15

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.