4
votes
2answers
94 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 …
0
votes
1answer
49 views
Simple reduction (NP completeness)
hey guys
I'm looking for a means to prove that the bicriteria shortest path problem is np complete.
That is, given a graph with lengths and weights, I need to know if a there exists a path in the …
6
votes
3answers
150 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 …
8
votes
14answers
585 views
Is it correct to ask to solve an NP-complete problem on a job interview?
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 …
3
votes
3answers
99 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 …
2
votes
5answers
256 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 …
0
votes
3answers
113 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 …
2
votes
2answers
135 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 am not looking for …
6
votes
7answers
409 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?
…
6
votes
8answers
485 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 …
9
votes
14answers
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,5,8,9,7,3,5,2]
…
6
votes
9answers
320 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 …
2
votes
1answer
222 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 …
1
vote
5answers
514 views
NP-Complete reduction (in theory)
I want to embed 3 NP-Complete problems(2 of them are known to be NP-Complete, 1 of them is my own idea). I saw "this question" and got idea about reinterpreting embedding problems in theory:
The …
11
votes
5answers
481 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 …
