Tagged Questions
NP-Complete refers to the hardest known problems within the complexity class NP. The "Traveling salesman problem" is one of the most widely known NP-Complete problem.
72
votes
12answers
22k views
What is an NP-complete problem?
What is an NP-complete problem? Why is it such an important topic in computer science?
68
votes
7answers
5k views
What's “P=NP?”, and why is it such a famous question?
The question of whether P=NP is perhaps the most famous in all of Computer Science. What does it mean? And why is it so interesting?
Oh, and for extra credit, please post a proof of the statement's ...
39
votes
16answers
5k views
Solving the NP-complete problem in XKCD
The problem/comic in question: http://xkcd.com/287/
I'm not sure this is the best way to do it, but here's what I've come up with so far. I'm using CFML, but it should be readable by anyone.
...
26
votes
9answers
1k views
Tricky programming problem that I'm having trouble getting my head around
First off, let me say that this is not homework (I am an A-Level student, this is nothing close to what we problem solve (this is way harder)), but more of a problem I'm trying to suss out to improve ...
22
votes
2answers
375 views
Is this problem NP, and does it have a name?
This problem came up in the real world, but I've translated it into a more generic "textbook-like" formulation. I suspect it is NP, but I'm particularly interested in knowing if it has a name or is ...
13
votes
14answers
5k views
Algorithm to Divide a list of numbers into 2 equal sum lists
There is a list of numbers.
The list is to be divided into 2 equal sized lists, with a minimal difference in sum. The sums have to be printed.
#Example:
>>>que = [2,3,10,5,8,9,7,3,5,2]
...
13
votes
5answers
1k views
Non-exponential solution to maze problem?
Given a n*n-sized multi-headed acyclic graph where each node has at most three children and three parents, is there an non-exponential algorithm to identify whether a n-length path exists where no two ...
12
votes
14answers
1k views
Is it correct to ask to solve an NP-complete problem on a job interview? [closed]
Today there was a question on SO, where the author was given an NP-complete problem during an interview and he obviously hadn't been told that it was one.
What is the purpose of asking such ...
12
votes
2answers
1k views
how were the first NP-complete problems shown to be NP-complete?
From the wikipedia entry on NP-Complete:
"The easiest way to prove that some new problem is NP-complete is first to prove that it is in NP, and then to reduce some known NP-complete problem to it"
...
10
votes
2answers
431 views
Algorithm/approximation for combined independent set/hamming distance problem
Input: Graph G
Output: several independent sets, so that the membership of a node to all independent sets is unique. A node therefore has no connections to any node in its own set. Here is an example ...
9
votes
7answers
5k views
Algorithm to find which numbers from a list of size n sum to another number
I have a decimal number (let's call it goal) and an array of other decimal numbers (let's call the array elements) and I need to find all the combinations of numbers from elements which sum to goal.
...
8
votes
4answers
313 views
Find set of numbers in one collection that adds up to a number in another
For a game I'm making I have a situation where I have a list of numbers – say [7, 4, 9, 1, 15, 2] (named A for this) – and another list of numbers – say [11, 18, 14, 8, 3] (named B) ...
8
votes
3answers
604 views
Is the board game “Go” NP complete?
There are plenty of Chess AI's around, and evidently some are good enough to beat some of the world's greatest players.
I've heard that many attempts have been made to write successful AI's for the ...
7
votes
7answers
692 views
Is this “Valid mathematical expression” problem P, or NP?
This question is purely out of curiosity. I am off school for the summer, and was going to implement an algorithm to solve this just for fun. That led to the above question, how hard is this problem?
...
7
votes
9answers
831 views
Possible NP-complete problem?
I'd just like someone to verify whether the following problem is NP-complete or if there is actually a better/easier solution to it than simple brute-force combination checking.
We have a sort-of ...
7
votes
9answers
467 views
Have you ever had a business requirement that turned out to be an NP-Complete problem?
NP-completeness seems to me like one of those things that's mostly just theoretical and not really something you'd run into in a normal work environment.
So I'm kind of curious if anyone's ever run ...
6
votes
1answer
125 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 ...
6
votes
2answers
156 views
NP-complete problem in Prolog
I saw this ECLiPSe solution to the problem mentioned in this XKCD comic. I tried to convert this to pure Prolog.
go:-
Total = 1505,
Prices = [215, 275, 335, 355, 420, 580],
...
6
votes
4answers
363 views
Is this problem np-complete?
Say there is a line of x bins filled with trinkets (random amount), in plain-sight (you can see how many trinkets there are in each bin). Now there are two players who can when it's their turn pick a ...
6
votes
5answers
869 views
The subsets-sum problem and the solvability of NP-complete problems
I was reading about the subset-sums problem when I came up with what appears to be a general-purpose algorithm for solving it:
(defun subset-contains-sum (set sum)
(let ((subsets) (new-subset) ...
6
votes
4answers
1k views
Are all scheduling problems NP-Hard?
I know there are some scheduling problems out there that are NP-hard/NP-complete ... however, none of them are stated in such a way to show this situation is also NP.
If you have a set of tasks ...
5
votes
4answers
520 views
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 and end points are given to us and instead of determining whether a solution exists, ...
5
votes
1answer
193 views
how to find the least number of operations to compute x^n
here is the problem from
ACM International Collegiate
Programming Contest Asia Regional
Contest, Yokohama, 2006-11-05
Starting with x and repeatedly multiplying by x, we can compute x^31 ...
5
votes
5answers
454 views
Is this combinatorial optimization problem NP-hard?
I working on a combinatorial optimization problem that I suspect is NP-hard, and a genetic algorithm has been working well with our dataset. We're a research group and plan to publish our results in ...
5
votes
3answers
282 views
Best-case Running-time to solve an NP-Complete problem?
What is the fastest algorithm that exists up with to solve a particular NP-Complete problem? For example, a naive implementation of travelling salesman is O(n!), but with dynamic programming it can be ...
4
votes
1answer
120 views
Algorithm to maximize profit: ways to solve/approach? (Advanced NP-Complete)
This one's hard, so all help really appreciated!
I know it is NP-Complete and thus cannot be solved in polynomial time, but looking for help in analysis, what type of NP-Complete problem it reduces ...
4
votes
3answers
353 views
How to tell if greedy algorithm suffices for the minimum coin change problem?
The minimum coin change problem is an NP-complete problem but for certain sets of coins the greedy algorithm (choose largest denominations first) works. Given a set of integers denoting coin-values, ...
4
votes
1answer
384 views
A 2-approximation algorithm for Vertex-Cover problem using “Spanning Tree”
I have seen a question on 2-approximation algorithm for Vertex-Cover problem(VC, known Np-Complete problem), and i don't know the answer. The problem is the following : Find a 2-approximation ...
4
votes
1answer
143 views
Counting Subgraph Instances
Let's say I have a large (several thousand node) directed graph G and a much smaller (3-5 node) directed graph g. I want to count how many isomorphisms of g are in G. In other words, I want to know ...
4
votes
4answers
845 views
Optimizing a Parking Lot Problem. What algorithims should I use to fit the most amount of cars in the lot?
What algorithms (brute force or not) would I use to put in as many cars (assume all cars are the same size) in a parking lot so that there is at least one exit (from the container) and a car cannot be ...
4
votes
1answer
611 views
Is minimization of boolean expressions NP-Complete?
I know that boolean satisfiability is NP-Complete, but is the minimization/simplification of a boolean expression, by which I mean taking a given expression in symbolic form and producing an ...
4
votes
7answers
1k views
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.e. solvable in a reasonable amount of time.
Given a value V, a set size L, and a sequence of ...
3
votes
3answers
178 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
3answers
93 views
If a problem X (decision problem) is known to be NP-Complete, and proven to be reduced to problem Y, can you then say problem Y is NP-Complete?
If a problem X (decision problem) is known to be NP-Complete, and proven to be reduced to problem Y in polynomialtime, can you then say problem Y is NP-Complete?
My first thought was, no, problem Y ...
3
votes
2answers
135 views
Looking for a model to represent this problem, which I suspect may be NP-complete
(I've changed the details of this question to avoid NDA issues. I'm aware that if taken literally, there are better ways to run this theoretical company.)
There is a group of warehouses, each of ...
3
votes
3answers
339 views
Can NP-Intermediate exist if P = NP?
My understanding is that Ladner's theorem is basically this:
P != NP implies that there exists a set NPI where NPI is not in P and
NPI is not NP-complete
What happens to this theorem if we ...
3
votes
3answers
374 views
Need Algorithm to group files of varying sizes into approximately equal blocks
Hey folks,
I'm trying to figure out an algorithm that will help me group an assortment of files of varying sizes into say, 'n' groups of approximately equal size.
Any ideas on how to achieve ...
3
votes
6answers
1k 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 ...
3
votes
4answers
685 views
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 compute several different costs (or energy values). Some examples are ...
3
votes
8answers
1k views
Find the best combination from a given set of multiple sets
Say you have a shipment. It needs to go from point A to point B, point B to point C and finally point C to point D. You need it to get there in five days for the least amount of money possible. There ...
2
votes
1answer
86 views
Shortest Paths with Resource Constraints
I have a directed acyclic graph and need to find the shortest paths with resource constraints. My constraint is that the paths selected must have a minimum number of a set resource consumed.
...
2
votes
1answer
23 views
Compilers that translate verification algorithms into SAT problems
The proof that SAT is NP-complete is a constructive proof, so it should be possible to implement it as a program. Has anyone done this?
I'm looking for a program (a compiler), that takes as input a ...
2
votes
1answer
167 views
Instance of subset sum problem
I have a problem which is a pretty clear instance of the subset sum problem:
"given a list of Integers in the range [-65000,65000], the function returns true if any subset of the list summed is equal ...
2
votes
2answers
127 views
Minimal addition-chain exponentiation
I know it has been proven NP-complete, and that's ok. I'm currently solving it with branch and bound where I set the initial upper limit at the number of multiplications it would take the normal ...
2
votes
3answers
81 views
A very complex problem in reduction notion
I have studied many about reduction but I have a bad problem in it:
I take this from CLRS :
" ... by “reducing” solving problem A to solving problem B, we use the “easiness” of B to prove the ...
2
votes
1answer
262 views
proof it is a NP-Complete problem
here is the question. I am wondering if there is a clear and efficient proof:
Vertex Cover: input undirected G, integer k > 0. Is there a subset of
vertices S, |S|<=k, that covers all edges?
...
2
votes
2answers
187 views
Dividing a list of numbers into roughtly equal totals
I'm aware that there probably isn't a "perfect" solution to my question (this sounds like a variation of the knapsack or the bin packing problem), but here's my scenario:
I want to divide a list of ...
2
votes
1answer
135 views
Is this optimal schedule task NPC?
I volunteered to write a program to schedule parent-teacher conferences. The principal wants parents to select 3 possible datetimes to visit their english and math teacher (at the same time).
Once ...
2
votes
3answers
165 views
Splitting a Domain name into constituent words (if possible)?
I want to break a domain name into constituent words and numbers e.g.
iamadomain11.com = ['i', 'am', 'a', 'domain', '11']
How do i do this? I am aware that there may be multiple sets possible, ...
2
votes
1answer
134 views
3-cnf-sat with a twist question
If you change the 3-cnf-sat problem as follows:
For each ci, ci = -xi1 OR -xi2 OR xi3 meaning exactly one of the variables appears without a negation.
You are also given values (0 or 1) to some (or ...