Tagged Questions
NP ("nondeterministic polynomial") is a complexity class of decision problems that can be solved by a nondeterministic Turing machine in polynomial time. Equivalently, it is the set of decision problems for which an answer can be verified in polynomial time by a deterministic Turing machine.
11
votes
3answers
107 views
Unit Testing Approximation Algorithms
I'm working on an open-source approximation algorithms library for graphs and networks using some popular python packages as a base. The main goal is to encompass up-to-date approximation algorithms ...
10
votes
3answers
464 views
The complexity of verifying solutions to NP-hard optimization problems?
(This may be a better fit at cstheory, but I figure that it's probably not a research-level topic.)
There are many optimization problems that are known to be NP-hard, such as the traveling salesman ...
8
votes
1answer
220 views
P=NP?-Problem: What are the most promising methods?
I know that P=NP has not been solved up to now, but can anybody tell me something about the following: What are currently the most promising mathematical / computer scientific methods that could be ...
5
votes
6answers
180 views
Sum-subset with a fixed subset size
The sum-subset problem states:
Given a set of integers, is there a non-empty subset whose sum is zero?
This problem is NP-complete in general. I'm curious if the complexity of this slight ...
5
votes
1answer
161 views
Finding a subset which satisfies a certain condition
I have several arrays of numbers (each element of the array can only take a value of 0 or 1) like this
v1: 1; 0; 0; 1; 1;
v2: 0; 1; 0; 0; 1;
v3: 1; 1; 0; 1; 0;
v4: 1; 0; 0; 1; 0;
v5: 1; 1; 0; ...
4
votes
2answers
147 views
Maximum Independent Set Algorithm
I don't believe there exists an algorithm for finding the maximum independent vertex set in a bipartite graph other than the brute force method of finding the maximum among all possible independent ...
4
votes
2answers
187 views
What makes an NP-hard problem not to be an NP-complete problem?
I am having confusion about NP-hard problems.
Some NP-hard problems are in NP which are called NP-Complete and some are not in NP.
For ex : Halting problem is only NP-hard, not NP-complete.
But why it ...
3
votes
4answers
136 views
most suitable language for computationally and memory expensive algorithms
Let's say you have to implement a tool to efficiently solve an NP-hard problem, with unavoidable possible explosion of memory usage (the output size in some cases exponential to the input size) and ...
2
votes
1answer
242 views
Proof that the halting problem is NP-hard?
(I apologize if this is the wrong site for this question, but given that there are many "not-hard-enough-for-CS-Theory" CS theory questions floating around here, I think that this might be a good fit. ...
2
votes
1answer
98 views
Are there decision problems which are decidable but not in NP? [closed]
this is my first stackoverflow question, so be gentle. I apologize in advance if this has been beaten to death already... I read a few threads on NP but I haven't found a tantalizing answer to my ...
2
votes
2answers
138 views
Is this an NP problem?
I recently read articles about NP and P. So the problem of finding the combinations of the given word is an NP problem? For example, the given word anto, the result can be anot,toan and so on. As I ...
1
vote
2answers
62 views
How to do set partition in polynomial time?
I've just read about possibility to solve set partition to half in polynomial time. But I could not find algorithm to do it.
I have two questions:
Where I can get that algorithm?
How is it possible ...
1
vote
3answers
94 views
Complexity of an old Top Coder riddle: Making a number by inserting +
This is a follow up to my previous question (about an old top coder riddle).
Given a string of digits, find the minimum number of additions required for the string to equal some target number. ...
1
vote
1answer
43 views
How do you determine if a language falls into NP?
for example, I know that the language
isnt context free by the pumping lemma for CFLs, but how would i prove that it falls into NP and not exp. time, decidable languages, or turing recognizable?
...
1
vote
1answer
89 views
Is there any well-known NP-complete problem that I can reduce a 'node placement' problem to?
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 ...
1
vote
3answers
167 views
Are all NP problems also NP-complete?
The definition of NP-complete is
A problem is NP-complete if
it belongs to class NP
all the other problems in NP polynomially transform to it
So, if all other problems in NP transform to an ...
1
vote
3answers
224 views
What are NP and NP-complete problems? [closed]
I am struggling to understand what are nondeterministic polynomial-time problems and NP-complete problems. I understand what polynomial-time solvable problems are, and saw in Wikipedia about NP ...
1
vote
1answer
571 views
Algorithm to determine best combinations - Bin Packing
Given a set of items, each with a value, determine the number of each item to include in a collection so that the total value is less than or equal to given limit and the total value is as large as ...
0
votes
3answers
58 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 ...
0
votes
0answers
32 views
CNF to DNF — conversion is NP Hard
How can i prove that the conversion from CNF to DNF is NP-Hard. I'm not asking for an answer, just some suggestions about how to go about proving it.
0
votes
2answers
116 views
How is 2-CNF SAT is in P, while 3-CNF SAT is in NPC?
I am really confused why, 2-CNF SAT is in P, while 3-CNF SAT is in NPC. I Read CLRS, and i understand how they proof, 3-CNF SAT is in NPC, can't i use the same reducablity from SAT to 2-CNF-SAT to ...
0
votes
2answers
25 views
Why is CYCLE in P?
Im going over an exam to prep for my final and why is CYCLE in P and not NP in part d? I know that by the definition a language is in NP if it is decided in polynomial time by a nondeterministic TM, ...
0
votes
0answers
36 views
DIVIDE AND CONQUER APPROACH FOR Travelling Sales Person
I can't approch and trace out this divide and conquer Algorithm to TSP problem...
Suppose that the cities are sorted with respect to their x-coordinates. We recursively compute a shortest tour ...
0
votes
1answer
29 views
NP-complete sample exercies [closed]
We are covering this in class, and my book (cormen Intro to Algorithms 3rd ed) doesnt have any sample problems to go over the material. Googling has come up hit or miss, so I was wondering if the past ...
0
votes
0answers
69 views
Hamiltonian path from increasing length unique paths
I have been playing around with the Hamiltonian Path Problem and am trying to derive unique n-length paths for increasing n.
Take a graph G.
Let a be the adjacency matrix for G.
Let I(m) be the ...
0
votes
1answer
63 views
NP Complete problems [closed]
I'm new to NP completeness and spent hours thinking of this irritating fact, here it goes like this.
In P, NP and NPC problems we consider only whether there's a polynomial time solution for the ...
0
votes
1answer
26 views
Vertex packing on a bipartite graph
Associate each node of an undirected graph with positive weight. The vertex packing problem is to find a subset of the nodes with the largest sum of weights, such that no two nodes with an edge ...
0
votes
0answers
24 views
Is the following in NP or not: [closed]
Is the following in NP or not:
Input: CFG G and input w
Question: Does there exist an input x of the length of w that x is created by G?
Is the question decidable?
Is it in NP?
EDIT:
That means ...
0
votes
2answers
76 views
NP verifier-based definition
i'm a computer science student and i'm having some problem understanding the verifier based definition of NP problems.
The definition says that a problem is in NP if can be verified in polinomial ...
0
votes
2answers
53 views
What's the need for creating problems as NP and P?
What's the main intention or main use of splitting any problem to NP and P? Is there is any historical reason for this or have they created these concepts to help us? If so, where can these help us?
0
votes
1answer
71 views
Prove that the problem of factoring α is in NP
Trying to brush up on computation theory but am not sure of solution to this:
Prove that the problem of factoring α is in NP.
I have a feeling it may be related to finding an NP problem and finding ...
-1
votes
1answer
129 views
Is it possible to write a program to print all pairs that add to k from an input array of size n [closed]
Is it possible to write a program to print all pairs that add to k from an input array of size n. If so how? I heard this problem is NP-Complete. I was wondering if we can provide a solution to this ...
-2
votes
2answers
65 views
Which of the following is the most precise classification of a problem X?
Which of the following is the most precise classification of a problem X?
X is in NP
X is in P
X is in O(n2)
X is in Θ(n2).
I would greatly appreciate if anyone could explain the answer of ...
-4
votes
2answers
389 views
non-deterministic polynomial solutions over deterministic polynomial solution [closed]
Non-Deterministic Polynomial solutions are always not desirable over Deterministic Polynomial solutions is it true? Please give an appropriate reasoning.