24
votes
15answers
2k 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 readab …
20
votes
7answers
2k 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 …
31
votes
11answers
4k views
What is an NP-complete problem?
What is an NP-complete problem? Why is it such an important topic in computer science?
2
votes
5answers
225 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 depart …
7
votes
12answers
1k 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 …
6
votes
8answers
476 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.
W …
3
votes
3answers
87 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 …
6
votes
7answers
388 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 ha …
0
votes
3answers
95 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). S …
6
votes
9answers
298 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 …
2
votes
2answers
123 views
What is the difference between a ‘combinatorial algorithm’ and a ‘linear algorithm’?
Or rather, what is the definition of a combinatorial algorithm and a linear algorithm, resp.?
To make it clear because obviously the first responders misunderstood the question: I …
11
votes
5answers
458 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 …
1
vote
5answers
688 views
Has anyone got a polynomial time algorithm for find a Hamiltonian walk in a graph
My algorithm is N factorial and is really slow.
4
votes
6answers
2k 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 …
7
votes
3answers
624 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-comple …
