Tagged Questions
48
votes
8answers
912 views
Parabolic knapsack
Lets say I have a parabola. Now I also have a bunch of sticks that are all of the same width (yes my drawing skills are amazing!). How can I stack these sticks within the parabola such that I am ...
20
votes
12answers
5k views
Teacher time schedule algorithm
This is a problem I've had on my mind for a long time. Being the son of a teacher and a programmer, it occurred to me early on... but I still haven't found a solution for it.
So this is the problem. ...
16
votes
13answers
3k views
Have you used a traveling salesman algorithm to solve a problem?
I studied TSP in college in the context of NP Completeness. I have never actually had a situation where it would apply to a practical problem. A little bit of research shows that it has been used ...
14
votes
4answers
1k views
3 dimensional bin packing algorithms
I'm faced with a 3 dimensional bin packing problem and am currently conducting some preliminary research as to which algorithms/heuristics are currently yielding the best results. Since the problem is ...
10
votes
5answers
884 views
What are the “hardest” problems which can be solved in polynomial time?
Recently I read a seminar work which says:
The matching algorithm [for general graphs] can be extended
to the weighted case, which appears to
be one of the "hardest" combinatorial
...
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 ...
6
votes
1answer
129 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 ...
5
votes
2answers
214 views
What is the problem name for Traveling salesman problem(TSP) without considering going back to starting point?
I would like to know what is the problem name for TSP w/o considering the way of going back to starting point and what is the algorithm to solve this.
I looked into Shortest path problem but that is ...
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 ...
4
votes
2answers
146 views
largest possible rectangle of letters
Write a program to find the largest possible rectangle of letters such that every row forms a word (left to right) and every column forms a word (top to bottom).
I found this interesting ...
4
votes
2answers
148 views
Is this a linear programming problem?
I have been pulling my hair out on one problem... The overall problem is complicated... but let me try my best to explain the part that really matters...
I have a graph where each edge represents the ...
4
votes
5answers
3k views
Minimum cost strongly connected digraph
I have a digraph which is strongly connected (i.e. there is a path from i to j and j to i for each pair of nodes (i, j) in the graph G). I wish to find a strongly connected graph out of this graph ...
3
votes
3answers
203 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
166 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 ...
3
votes
6answers
2k 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 ...
2
votes
3answers
195 views
fair partitioning of set S into k partitions
There is a set S containing N integers each with value 1<=X<=10^6. The problem is to partition the set S into k partitions. The value of a partition is the sum of the elements present in it. ...
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 ...
2
votes
4answers
362 views
who knows algorithm about stones and backpack?
maybe somebody knows algorithm, or just what name it has, for putting stones (different weight) into different size backpacks?
I should do it in Prolog. I give weights of stones and capacities of ...
2
votes
2answers
333 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
3answers
903 views
A packing algorithm … kind of
Given an array of items, each of which has a value and cost, what's the best algorithm determine the items required to reach a minimum value at the minimum cost? eg:
Item: Value -> Cost
...
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
1answer
40 views
Scheduling: P||Cmax
In the schedule problem P||Cmax given:
n - number of tasks to schedule
m - number of machines
vector p - keeps times of working for each of n tasks.
How is p is defined each time?
Namely, is it an ...