Top "Np-complete" questions

NP-Complete refers to the hardest known problems within the complexity class NP.

np-completeness in the bounded degree spanning tree

I understand why the Bounded Degree Spanning Tree is considered NP Complete with a degree or 2 (it is an instance …

graph tree np-complete
Factorial-time algorithms and P/NP

It's quite easy to see that n! grows slower than almost anything to the N power (say, 100^N) and so, …

algorithm np-complete
find the maximum number of vertex-disjoint paths in a graph with a constraint

Given a undirected graph G=(V,E), each edge is associated with a non-negative value. How to find the maximum …

algorithm graph theory np-complete
Algorithms to find the number of Hamiltonian paths in a graph

I'm trying to solve a slightly modified version of the Hamiltonian Path problem. It is modified in that the start …

algorithm path np-complete
Prove NP-Completeness clique + independent set graph

"Prove that it is NP-Complete to determine given input G and k whether G has both a clique of size …

algorithm computer-science np-complete clique-problem
Is this variant of the subset sum problem easier to solve?

I have a problem related to the subset sum problem and am wondering if the differences make it easier, i.…

algorithm dynamic-programming np-complete subset-sum
How to design acceptance probability function for simulated annealing with multiple distinct costs?

I am using simulated annealing to solve an NP-complete resource scheduling problem. For each candidate ordering of the tasks I …

optimization np-complete simulated-annealing
can some sorting be P, NP, and NP-Complete?

I am quite confused, and this is my thought after some reading: P is in NP and NP is in …

algorithm sorting np-complete np p-np