NP-Complete VS NP-Hard

回眸只為那壹抹淺笑 提交于 2020-01-01 11:50:16

问题


I am trying to understand the difference between NP-Complete and NP-Hard.

Below is my understanding

An NP-Hard problem is one that is not solvable in polynomial time but can be verified in polynomial time.
An NP-Complete problem is one that is in NP and is also NP-Hard.

Is the above definition correct? If so, What about problems not In NP but NP-Hard. Wouldn't they be harder than NP-Complete problem, say they can only be solved and verified in exponential time?


回答1:


A NP problem (not NP-Hard problem) is a decision problem which can be verified in polynomial time. Maybe they are solvable in polynomial time, since all problems in P are also in NP.

A NP-complete problem is a decision problem, which all NP problems can reduced to in polynomial time. They are the hardest problems in the class NP.

The NP-hard class is the class of the problems which are at least as hard as the NP-complete problem. They are not necessarily a decision problem. Given that we don't know whether NP = P or not, it would be hard to say whether we can verify a NP-hard problem in polynomial time.

For example, the decision problem of maximum clique (Give a graph G an integer K, to tell whether there is a complete graph with at least K vertices ) is NP problem. It is also NP-complete and NP-hard. However, maximum clique problem (Find the maximum clique in the given Graph) is not NP or NP-complete, since it is not decision problem. We can say it is NP-hard, since it is at least as hard as the decision version of maximum clique problem.




回答2:


NP-Hard is lower bound on the problem. Impossible problems are also NP-Hard. NP-Complete means that it is NP-Hard and at the same time NP-Solvable.

Problems that can be verified in polynomial time is one of the definitions of problems in NP.




回答3:


Your definition for NP-Hard is not correct, it looks more like the (not precisely correct) definition of the complexity class NP.


What is the complexity class NP?

A computational problem p is in the complexity class NP if it can be efficiently verified. In complexity theory, we deem computation that takes polynomial time to be efficient. So formally p ∈ NP if p is polynomial-time verifiable.

In your definition, you mentioned the concept polynomial-time solvable, which corresponds to the complexity class P. A NP-Complete problem is polynomial-time solvable if and only if P = NP. Note that the famous P vs NP is one of the biggest open problems in Computer Science, so currently no one knows whether P = NP or P ⊊ NP, and it is inappropriate to say that NP problems are not polynomial-time solvable (though it is widely believed to be the case).


What are NP-Hard problems?

Intuitively, NP-Hard problems are computational problems that are at least as hard as the problems in NP. When we say a computational problem p is at least as hard as another problem q, we actually think about it reversely - if we can solve p in time T, than we can also solve q in time roughly the same as T (say, differ by a polynomial factor).

More precisely, we say that p is at least as hard as another problem q if there is a polynomial-time reduction from q to p. Roughly speaking, a polynomial-time reduction means given an algorithm A that solves p, we can construct a polynomial-time algorithm B by using A as black-box (i.e. we treat the time complexity of A as O(1)) to solve q.

In our case of NP-Hard problem, if an NP-Hard problem can be solved in polynomial-time, then ALL NP problems can be solved in polynomial-time (and hence P = NP!). So it is widely believed that NP-hard problems are NOT polynomial-time solvable.


What are NP-Complete problems?

As you have stated correctly in your question, a computational problem p is NP-Complete if it is NP-Hard and p ∈ NP.


NP-Hard problems that are not in NP?

If there exists a NP-Hard problem that is not in NP (to the best of my knowledge, no such problem has been proved to fall in this category at this moment of time), such problem is harder than NP-Complete problems.

Proof: Suppose our claim is not true. Let p be a NP-Complete problem that is at least as hard as another problem q that is NP-Hard but not in NP. Since p is at least as hard as q, we have a polynomial-time reduction (say it runs in time P(n)) from q to p. Since p is in NP, it can be verified by some algorithm A in time T(n) where T is a polynomial.

Now given any instance r of q, we can construct an algorithm B by first reduction it to an instance s of p, and then invoke A to verify s. Note that B verifies q in time T(P(n)), which is a polynomial in n, it follows that q is in NP, which gives us a contradiction!




回答4:


Your definition is only correct for NP-complete.

Starting from the bottom: P is the class of problems that can be solved by some deterministic Turing machine in polynomial time. NP is the class of problems that can be solved by some non-deterministic Turing machine in polynomial time (or whose solutions can be verified by deterministic Turing machines in polynomial time).

As for NP-hard, it means decision problems X that have the following property: given a Turing machine that solves the problem, one could restructure (Turing reduction) any instance of a problem in NP to an instance of X in polynomial time. Informally, this means that NP-hard problems are those that are "at least as hard as NP", or that the solution for X could be applied to every problem in NP. Note that the problem doesn't have to be verifiable in polynomial time, or actually verifiable at all. NP-hard includes undecidable and unrecognizable problems as well.

We don't know if NP-hard includes problems that can be solved in polynomial time or not (the P ?= NP problem). Currently, not a single polynomial-time solution for a NP-hard problem has been found, but neither has it been proven that such solution can't exist. If such a solution was found for some NP-hard problem X, that would mean P = NP as any instance of any problem in NP could be converted to an instance of X in polynomial time (because of the Turing reduction property of NP-hard problems) and then be solved in polynomial time by X's polynomial time solution.




回答5:


Let me make it simple.

A professor gives his students a problem, and asks them to provide an efficient algorithm.

Next day, some of his intelligent students have cracked the algorithm to solve it. It has a complexity of O(2n). Now, all are happy that they have got the algorithm to get the solution. Everything looks good.

The professor appreciates them, but says, "The task is not yet over", and challenges them to solve it practically using a system.

So, they immediately try to emulate it in the system. A student says, his system has a fantastic speed of 1 GIPS (1000,000,000 instructions per second) and that it can solve the problem within fractions of a second. So, they code their algorithm and try to execute it.

Then they start with 100 inputs to the data set, and they run it. They were surprised to see that the program runs and runs and runs and doesn't come to a halt.

Then another student did a math on it and figured out that, the system would take 2100 / 109 seconds to solve it. Roughly around 240 years.

Next day, while the program was still running, the professor said, "Very well. My dear students, this is what we call NP-Hard. The system might give the solution one day, but I'm afraid we won't be there to see it".

But, the same problem, once it generates a solution, if we are able to verify the solution of a NP-Hard problem in realistic time, then it's called NP-Complete. For example, Sum of Subsets is a NP-Hard problem. But, once we get a subset solution, we can check it easily in polynomial time. So it becomes NP-Complete.



来源:https://stackoverflow.com/questions/20523578/np-complete-vs-np-hard

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!