Tagged Questions

11
votes
3answers
114 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
484 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 ...
5
votes
6answers
246 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
185 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
188 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 ...
3
votes
4answers
140 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
2answers
142 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
71 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
106 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
93 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
237 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 ...
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 ...
0
votes
2answers
150 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
1answer
71 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
138 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 ...
-3
votes
2answers
396 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.