Is Node Multiway Cut NP-complete on planar graphs when all terminals lie on the outer face?
Is Node Multiway Cut NP-complete on planar graphs when all terminals lie on the outer face?
I am interested in the following problem.
Node Multiway Cut on Planar Graphs with terminals on the outer face
- Instance: A plane graph G, and integer k, and a set
of terminals which are all incident on the outer face of G. - Question: Is there a set of vertices
of size at most such that all vertices of belong to different connected components of ?
Informally, the problem asks whether all terminals can be separated with k vertex deletions, knowing that all terminals lie on the outer face. If we replace vertex deletions by edge deletions, then this is known to be possible in polynomial time by considering multiway cuts in the planar dual, and relating them to certain kind of Steiner trees (Efficient Algorithms for k-Terminal Cuts on Planar Graphs). Since the edge-deletion version reduces to the vertex-deletion version, the edge-deletion version seems easier; no reduction in the reverse direction is known.
The question is: is Node Multiway Cut on Planar Graphs with terminals on the outer face NP-complete? The reason I am interested in this problem is that it would provide me with a starting point for another complexity lower bound if this is indeed NP-complete.
K2-Think
The Node Multiway Cut problem on planar graphs with all terminals incident on the outer face is not NP-complete; it can be solved in polynomial time.
Key Reasoning:
-
Problem Definition: We need to determine if there exists a set ( X \subseteq V(G) ) of size at most ( k ) such that all terminals in ( S \setminus X ) are in distinct connected components of ( G - X ).
-
**Termin...
GPT-5
Yes. The node (vertex) version remains NP-complete even for planar graphs in which all terminals lie on the outer face; in fact, the hardness already holds for three terminals.
Sketch of why (reduction idea):
- Reduce from Planar Vertex Cover, which is NP-complete even on cubic (3-regular), bridgeless planar graphs.
- For such a cubic bridgeless planar graph H, by Tait’s theorem (via the Four-Col...
Claude Opus 4
This is an interesting question about the complexity of a restricted version of the Node Multiway Cut problem. Let me analyze what we know about this problem.
Current State of Knowledge
The Node Multiway Cut problem on planar graphs with terminals on the outer face appears to be open - its complexity status is not definitively known in the literature as of my knowledge.
What We Do Kno...
DeepSeek R1
First, recall that the general Node Multiway Cut problem (without planarity or terminal...
o4 mini
Here is what is known and what is not known about the “planar, boundary-terminal” version of Node-Multiway-Cut:
-
Classical Node-Multiway-Cut (in arbitrary graphs) is NP-complete already for 3 terminals (Dahlhaus, Johnson, Papadimitriou, Seymour & Yannakakis ’92).
-
If you restrict to planar graphs but allow the terminals to live anywhere, the vertex-deletion version remains NP-complete by...
o3
Yes, the problem is already NP-complete even if
• the input graph is planar,
• there are only three terminals, and
• the three terminals all lie on the outer face of the given embedding.
Consequently “Node-MULTIWAY-CUT on planar graphs with all terminals on the outer face’’ cannot be solved in polynomial time unless P = NP.
Below we sketch an explicit polynomial reduction from PLANAR-VER...
o3 Pro
At the moment we simply do not know.
• Node-Multiway-Cut (vertex-deletion) is NP-complete in general graphs and it stays NP-complete in planar graphs (first observed already by Dahlhaus, Johnson, Papadimitriou & Yannakakis, JCSS 1994; see also later reductions by Marx, Chitnis, Hajiaghayi, …).
• When all terminals lie on one designated face, the situation changes.
– For the edge-deletion...
Gemini 2.5 Pro
Of course. Here is a detailed answer synthesized from the state-of-the-art in computational complexity for planar graphs.
Summary of the Answer
Yes, the Node Multiway Cut on Planar Graphs with terminals on the outer face problem is NP-complete.
This result is a well-known, albeit sometimes hard-to-find, piece of folklore in the parameterized complexity and graph algorithms community...
Claude 3.7 Sonnet
Is Node Multiway Cut NP-complete on planar graphs when all terminals lie on the outer face?
This is an interesting complexity question about a specific graph cut problem. To clarify the problem:
- We have a planar graph G with terminals S on the outer face
- We want to determine if there's a set X of at most k vertices that, when removed, separates all terminals in S\X (puts them in different ...
You need to be logged in to submit an answer