I have the following NP-complete problem: Given a set of locations in a N x N field, and a set of m nodes, and also a connectivity graph of the nodes (i.e. an undirected graph whose edges represent every pair of nodes in contact with each otehr), and contact range R (in the same length unit as the N x N field), find a placement of the nodes in the field respecting the connectivity graph (i.e. place nodes s.t any pair in contact is nearer than R and eny pair not in contact is farther than R), or show that such placement does not exisit.

Do we have any well-known NP-complete problem, that this problem can be reduced to? (Also an optimization version of the problem can be considered, i.e. to find the most optimal placement)

link|improve this question

20% accept rate
4  
Hm. You're the one who claims that your problem is NP-complete, so doesn't that mean that you have to have a proof that you can obtain any other NP problem from yours? – Kerrek SB Oct 3 '11 at 16:23
1  
The "complete" part of NP-Complete means it can be reduced to another Np-Complete problem. If you don't know that, then your problem is just "NP", not "NP-Complete". – SoapBox Oct 3 '11 at 16:30
@SoapBox - No: the "complete" part means that another NP-complete problem can be reduced to it, not conversely. (More precisely, it's NP-hardness; NP-complete is NP and NP-hard) – sdcvvc Oct 4 '11 at 3:39
1  
It looks NP-complete. It's a special case of subgraph isomorphism, when one of graphs is the N x N field, where edges are between nodes of distance < R, and the second graph is given. I think it might be even NP-hard for R=1 or 2, but to simplify proof would consider varying R. – sdcvvc Oct 4 '11 at 4:11
feedback

1 Answer

Set cover sounds alot like this problem. In fact, it may be almost precisely this problem. Even better: it has an approximation algorithm guaranteed to be within O(log n) of the optimal solution.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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