Tagged Questions
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]
...
10
votes
4answers
342 views
Can bottom-up dynamic programming be done in Lisp?
Can a typical Lisp dialect solve problems using the bottom-up "dynamic programming" approach?
(Please note: I'm not talking about "memoization" which, as far as I understand, is trivial using any ...
10
votes
5answers
2k views
Efficient table for Dynamic Programming in Haskell
I've coded up the 0-1 Knapsack problem in Haskell. I'm fairly proud about the laziness and level of generality achieved so far.
I start by providing functions for creating and dealing with a lazy 2d ...
6
votes
6answers
349 views
Knapsack with continuous (non distinct) constraint
I watched Dynamic Programming - Kapsack Problem (YouTube). However, I am solving a slightly different problem where the constraint is the budget, price, in double, not integer. So I am wondering how ...
6
votes
3answers
271 views
0-1 Knapsack algorithm
Is the following 0-1 Knapsack problem solvable:
'float' positive values and
'float' weights (can be positive or negative)
'float' capacity of the knapsack > 0
I have on average < 10 items, so ...
6
votes
3answers
610 views
divide list in two parts that their sum closest to each other
This is a hard algorithms problem that :
Divide the list in 2 parts (sum) that their sum closest to (most) each other
list length is 1 <= n <= 100 and their(numbers) weights 1<=w<=250 ...
5
votes
1answer
698 views
Why is the knapsack problem pseudo-polynomial?
I know that Knapsack is NP-complete while it can be solved by DP. They say that the DP solution is pseudo-polynomial, since it is exponential in the "length of input" (i.e. the numbers of bits ...
4
votes
1answer
350 views
Algorithm to get every possible subset of a list, in order of their product, without building and sorting the entire list (i.e Generators)
Practically, I've got a set of objects with probabilities, and I want to look at each possible group of them, in order of how likely it is that they're all true assuming they're independent -- i.e. in ...
3
votes
2answers
524 views
Solving a variation of 0/1 Knapsack Problem (multiple source for items, each item can be selected from one of the sources)
So for a practice question, we are supposed to design a Dynamic Programming algorithm which is a variation of 0/1 knapsack problem... Basically each item comes from 4 different source, and that item ...
2
votes
2answers
140 views
Forming Dynamic Programming algorithm for a variation of Knapsack Problem
So I was thinking,
I wanted to do a variation on the Knapsack Problem.
Imagine the original problem, with items with various weights/value.
My version will, along with having the normal ...
0
votes
1answer
71 views
Knapsack DP How to find total number of value taken?
It's like
Maximum weight 3
Value Weight
1955 1
2000 5
101 1
Take the first and the third. but can't find away to find total value. 1955+101.
i use Knapsack 0-1. is there anyway to ...
0
votes
1answer
57 views
Code sometimes returns Integer.MAX_VALUE.Cannot figure out why
I am trying to write code to return the lowest number of coins needed to make up a given number. The inputs to my method are an array of valid coins, and the number I try to make.
public static ...
0
votes
1answer
122 views
Knapsack 0/1 algorithm - unlimited resources
I've run into a thinking trouble and I'm just frustrated. I have a working algorithm of the knapsack problem, using dynamic programming, where I specify
Max load
Items (their weight)
and the ...
0
votes
1answer
82 views
Keeping Track of Dynamic Programming Steps
I'm teaching myself basic programming principles, and I'm stuck on a dynamic programming problem. Let's take the infamous Knapsack Problem:
Given a set of items, each with a weight and a value, ...
0
votes
1answer
173 views
Knapsack 0-1 path reconstruction (which items to take)
I know how to solve knapsack 0-1 problem with dynamic programming approach, but I am having troubles figuring out which items to take without compromising the complexity of O(N * C) (N items, C ...