Tagged Questions
Dynamic programming builds solutions from solutions to simpler subproblems. It's closely allied to recursion, but dynamic programming algorithms are formulated as iteration usually over a very regular datastructure.
41
votes
14answers
4k views
Good examples, articles, books for understanding dynamic programming [closed]
I can't figure out the principles of dynamic programming and I really do want it. DP is very powerful, it can solve problems like this:
Getting the lowest possible sum from numbers' difference
So, ...
25
votes
10answers
8k views
Sum of digits of a factorial
Link to the original problem
It's not a homework question. I just thought that someone might know a real solution to this problem.
I was on a programming contest back in 2004, and there was this ...
24
votes
6answers
823 views
Find the number of occurrences of a subsequence in a string
For example, let the string be the first 10 digits of pi, 3141592653, and the subsequence be 123. Note that the sequence occurs twice:
3141592653
1 2 3
1 2 3
This was an interview ...
23
votes
5answers
1k views
Challenging dynamic programming problem
This is a toned down version of a computer vision problem I need to solve. Suppose you are given parameters n,q and have to count the number of ways of assigning integers 0..(q-1) to elements of ...
22
votes
5answers
473 views
Algorithm for finding the busiest period?
I have some data like this:
1: 2 - 10
2: 3 - 15
3: 4 - 9
4: 8 - 14
5: 7 - 13
6: 5 - 10
7: 11 - 15
I will attempt a representation to make it clearer:
1 2 3 4 5 6 7 ...
21
votes
5answers
2k views
What is dynamic programming?
This is a really general question. What is dynamic programming (how's it different from recursion, memoization, etc)? I've read the wikipedia article on it but I still don't really understand it.
...
16
votes
6answers
589 views
Dynamic Programming algorithm to find Heavy integers
Recently I was asked the following question:
A non-negative integer is called heavy if the average value of its digits in decimal representation exceeds 7. For example the number 8698 is heavy, ...
14
votes
2answers
158 views
Solving an Optimization (Find the minimum amount of time needed to get everyone up and down a mountain)
The problem goes like this (translated):
There are n (n <= 25000) people at the bottom of a mountain, and everyone wants to go up, then down the mountain. There are 2 tour guides: one for ...
13
votes
3answers
1k views
FSharp runs my algorithm slower than Python!
Years ago, I solved a problem via dynamic programming:
http://users.softlab.ece.ntua.gr/~ttsiod/fillupDVD.html
The solution was coded in Python.
As part of expanding my horizons, I recently started ...
13
votes
9answers
516 views
algorithm to find longest non-overlapping sequences
I am trying to find the best way to solve the following problem. By best way I mean less complex.
As an input a list of tuples (start,length) such:
[(0,5),(0,1),(1,9),(5,5),(5,7),(10,1)]
Each ...
13
votes
5answers
3k views
Dynamic programming - Largest square block
I need to find the largest square of 1's in a giant file full of 1's and 0's. I know i have to use dynamic programming. I am storing it in a 2D array. Any help with the algorithm to find the largest ...
13
votes
4answers
3k views
A simple example for someone who wants to understand Dynamic Programming
I am looking for a manageably understandable example for someone who wants to learn Dynamic Programming. There are nice answers here about what is dynamic programming. The fibonacci sequence is a ...
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]
...
11
votes
4answers
483 views
Dynamic programming in the functional paradigm
I'm looking at Problem thirty one on Project Euler, which asks, how many different ways are there of making £2 using any number of coins of 1p, 2p, 5p, 10p, 20p, 50p, £1 (100p) and £2 (200p).
There ...
11
votes
4answers
650 views
What is a good algorithm to traverse a Trie to check for spelling suggestions?
Assuming that a general Trie of dictionary words is built, what would be the best method to check for the 4 cases of spelling mistakes - substitution, deletion, transposition and insertion during ...
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
1answer
295 views
dynamic programming algorithm during an interview [closed]
This question was asked to me in an interview and it embarrassingly exposed my shortcomings on dynamic programming. I will appreciate if someone can help me crack this one. Also, it would be very ...
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 ...
10
votes
3answers
912 views
A Dynamic programming problem
Can anyone help me find an optimal Dynamic programming algorithm for this problem
On the way to dinner, the CCC competitors are lining up for their delicious curly fries. The N (1 ≤ N ≤ 100) ...
10
votes
2answers
824 views
efficient longest common subsequence algorithm library?
I'm looking for a (space) efficient implementation of an LCS algorithm for use in a C++ program. Inputs are two random access sequences of integers.
I'm currently using the dynamic programming ...
10
votes
5answers
3k views
Dynamic programming practice problems with solutions
I have seen many questions on stackoverflow where dynamic programming technique can be used to make a exponential algorithm, a polynomial one. I have seen standard problems on dynamic programming. Is ...
10
votes
1answer
6k views
How to determine the longest increasing subsequence using dynamic programming?
Let's say I have a set of integers. I want to find the longest increasing subsequence of that set using dynamic programming. This is simply out of practice, reviewing my old notes from my algorithms ...
10
votes
2answers
654 views
How can I compute the number of characters required to turn a string into a palindrome?
I recently found a contest problem that asks you to compute the minimum number of characters that must be inserted (anywhere) in a string to turn it into a palindrome.
For example, given the string: ...
10
votes
4answers
1k views
Dynamic Programming: Sum-of-products
Let's say you have two lists, L1 and L2, of the same length, N. We define prodSum as:
def prodSum(L1, L2) :
ans = 0
for elem1, elem2 in zip(L1, L2) :
ans += elem1 * elem2
return ...
9
votes
10answers
305 views
In python, how does one efficiently find the largest consecutive set of numbers in a list that are not necessarily adjacent?
For instance, if I have a list
[1,4,2,3,5,4,5,6,7,8,1,3,4,5,9,10,11]
This algorithm should return [1,2,3,4,5,6,7,8,9,10,11].
To clarify, the longest list should run forwards. I was wondering what ...
9
votes
2answers
527 views
8-queen problem using Dynamic programming
I am quite confused with idea of implementing 8-queen problem using dynamic programming. It seems it is not possible at one end as for DP " if the problem was broken up into a series of subproblems ...
9
votes
5answers
6k views
Getting the submatrix with maximum sum?
Input: A 2-dimensional array NxN - Matrix - with positive and negative elements.Output: A submatrix of any size such that its summation is the maximum among all possible submatrices.
Requirement: ...
8
votes
1answer
407 views
Facebook interview: find out the order that gives max sum by selecting boxes with number in a ring, when the two next to it is destroyed
Didn't find any similar question about this.
This is a final round Facebook question:
You are given a ring of boxes. Each box has a non-negative number on it, can be duplicate.
Write a ...
8
votes
2answers
460 views
Stuck with an interview Question… Partitioning of an Array
I found the following problem on the internet, and would like to know how I would go about solving it:
Problem: Integer Partition without Rearrangement
Input: An arrangement S of non negative ...
8
votes
2answers
361 views
What is difference between memoization and dynamic programming?
I think dynamic programming is subset of memoization. Is it right?
8
votes
5answers
327 views
how to make the sequence a non-decreasing sequence with the minimum number of steps?
Here is the problem states that
given a sequence of N integer numbers. At each step it is allowed to increase the value of any number by 1 or to decrease it by 1. The goal of the game is to make ...
8
votes
2answers
1k views
Dynamic Programming - Rod Cutting Problem
In Introduction to Algorithms(CLRS), Cormen et al. talk about solving the Rod-cutting problem as follows(page 369)
Extended-Bottom-Up-Cut-Rod(p,n)
let r[0...n] and s[0....n] be new arrays
r[0] = ...
8
votes
2answers
643 views
how to convert a string into a palindrome with minimum number of operations?
Here is the problem states to convert a string into a palindrome with minimum number of operations. I know it is similar to the Levenshtein distance
but I can't solve it yet
For example, input ...
8
votes
2answers
202 views
Memoization Handler
Is it "good practice" to create a class like the one below that can handle the memoization process for you? The benefits of memoization are so great (in some cases, like this one, where it drops from ...
7
votes
2answers
102 views
Data.MemoCombinators, where can I find examples?
This package has some functions to turn recursive functions into dynamic programming recursive functions, for better performance:
...
7
votes
2answers
309 views
Maximum Contiguous Subsequence Sum of At Least Length L
So for the following array, where L = 3
-5 -1 2 -3 0 -3 3
The best possible sum of at least length 3 would be 0, where the subsequence is the last three elements (0, -3, 3)
How can you calculate ...
7
votes
2answers
382 views
Building bridges problem - how to apply longest increasing subsequence?
The building bridges problem is stated as follows:
There is a river that runs horizontally through an area. There are a set of cities above and below the river. Each city above the river is ...
7
votes
1answer
202 views
Permuting rows in an array to eliminate increasing subsequences
The following problem is taken from Problems on Algorithms (Problem 653):
You are given a n x 2 matrix of numbers. Find an O(n log n) algorithm that permutes the rows in the array such that that ...
7
votes
2answers
1k views
Finding the Longest Palindrome Subsequence with less memory
I am trying to solve a dynamic programming problem from Cormem's Introduction to Algorithms 3rd edition (pg 405) which asks the following:
A palindrome is a nonempty string over
some alphabet ...
7
votes
5answers
677 views
How are Dynamic Programming algorithms implemented in idiomatic Haskell?
Haskell and other functional programming languages are built around the premise of not maintaining state. I'm still new to how functional programming works and concepts in it, so I was wondering if ...
7
votes
2answers
3k views
how to find longest palindromic subsequence?
Here is the problem (6.7 ch6 ) from Algorithms book (by Vazirani) that slightly differs from the classical problem that finding longest palindrome. How can I solve this problem ?
A subsequence is ...
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
186 views
Finding an optimal solution that minimizes a constraint?
Let us call this problem the Slinger-Bird problem (actually the Slinger is analogous to a server and the bird to a request but I was having a nervous breakdown thinking about it so I changed them ...
6
votes
3answers
217 views
Largest rectangular sub matrix with the same number
I am trying to come up with a dynamic programming algorithm that finds the largest sub matrix within a matrix that consists of the same number:
example:
{5 5 8}
{5 5 7}
{3 4 1}
Answer : 4 elements ...
6
votes
2answers
178 views
Distribution of balls into 'bins with given capacities' using Dynamic Programming
I was wondering how to solve such a problem using DP.
Given n balls and m bins, each bin having max. capacity c1, c2,...cm. What is the total number of ways of distributing these n balls into these m ...
6
votes
2answers
303 views
problem : False Mirrors. can you help me to solve?
Here is the problem
BFG-9000 destroys three adjacent balconies per one shoot. (N-th balcony is adjacent to
the first one). After the shoot the survival monsters inflict damage to Leonid
...
6
votes
1answer
230 views
How many integers 0 < n < 10E18 have the property that the sum of the digits of n equals the sum of digits of 137n? [closed]
I'm stumped on a project Euler question, #290. Can anybody point me in the right direction?
i = 0
o = 0
p = 1
while i < 10 ** 18
j = i.to_s.split('').map(&:to_i)
k = j.inject(:+)
...
6
votes
1answer
413 views
find the minimum sum of matrix (n x n) that select only one in each row and column
this is another algorithms problem related to dynamic programming
Here is the problem :
find the minimum sum of the given matrix such that select one in each row and column
For example :
3 4 2
8 ...
6
votes
3answers
609 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 ...