Tagged Questions

6
votes
1answer
129 views

List of problems that are in general NP-hard but have polynomial-time solution in planar graphs?

I encountered many problems that can be formulated as graph problem. It is in general NP-hard but sometimes the graph can be proved to be planar. Hence, I am interested in learning these problems and ...
3
votes
3answers
204 views

NP-Complete vs. NP-hard [closed]

If a problem A known to be NP-Complete can be reduced to another problem B in polynomial time then B is (A) NP-Complete (B) NP-hard Nothing is given about problem B whether it is in NP or not. I'm ...
3
votes
6answers
2k views

How to find what numbers in a set add up to another given number?

Here's a problem that I seem to be running into working with an accounting system. I have a set of transactions, but their sum does not equal the amount that the accounting department thinks that it ...
2
votes
2answers
193 views

np-complete but not “hard” [closed]

Is there some language that is NP-complete but for which we know some "quick" algorithm? I don't mean like the ones for knapsack where we can do well on average, I mean that even in the worst case ...
1
vote
2answers
238 views

Is longest possibly non-simple path in NP?

I know that the following problem is in NP-HARD: Given a simple graph G=(V,E), two vertices v, v' in V, an integer B, and a non-negative length function len: E-> Z+, is there a simple path from v to ...
1
vote
1answer
40 views

Given a collection of consumers competing for a limited resource, allocate that resource to maximize it's applicability

Sorry the question title isn't very clear, this is a challenging question to ask without providing a more concrete example. Consider the following scenario: I have a number of friends whose birthdays ...
0
votes
3answers
68 views

Np-hardness reduction

If I want to show that a problem is np-hard is it ok to use a existing np-hard problem multiple times? For example use Hamiltonian Cycle n times in a graph where n is the number of vertices? Or do I ...