Tagged Questions
9
votes
4answers
1k views
NP-Hard? Algorithmic complexity of online poker collusion detection?
What's the best way to describe the algorithmic complexity of collusion detection for a ten-million-player online poker site?
Assume (I don't think these assumptions make much difference so feel free ...
5
votes
1answer
101 views
Selecting k sub-posets
I ran into the following algorithmic problem while experimenting with classification algorithms. Elements are classified into a polyhierarchy, what I understand to be a poset with a single root. I ...
3
votes
3answers
177 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
1answer
163 views
How hard is this in terms of computational complexity?
So I have a problem that is basically like this: I have a bunch of strings, and I want to construct a DAG such that every path corresponds to a string and vice versa. However, I have the freedom to ...
2
votes
2answers
323 views
Interesting variation to the subset sum problem
An interesting variation of the subset sum problem was presented to me by a friend from work:
Given a set S of positive integers, of size n, and integers a and K, is there a subset R (of the set S) ...
1
vote
0answers
30 views
Finding smallest set of sub-strings within length contraints… NP-hard or EXPTIME
I have a string (s). I need to find the smallest set of substrings of s such that no substring is shorter than l, longer than L, overlaps it's predecessor by less than o or more than O and that the ...