Dynamic programming is an algorithmic technique for efficiently solving problems with a recursive structure containing many overlapping subproblems.

learn more… | top users | synonyms

-1
votes
0answers
10 views

DP - Number of proper bracket expressions of length n with opening brackets appearing in fixed position [closed]

My problem is that i am not able approach this problem . I am not getting How to proceed thinking for such problem. let say an example : input : .(.. output: 1 because possible correct string ...
0
votes
0answers
32 views

Creating a search/filtering function like most torrent tracker has in PHP [closed]

I'm trying to figure out a simple but effective way to create the back-end function in PHP which works just as torrent trackers have with categories, tags, names, etc. I've set up the HTML to look ...
0
votes
0answers
7 views

Coding Animated GIFS into Email

I'm working on a new email marketing campaign for my current employer that involves some small animated GIFs. I know they work on most clients except Outlook 2007 and 2010; so I'm wondering if there's ...
0
votes
1answer
35 views

Dynamic Button not refreshing CSS properties

First time posting = ) I have been searching for a little while and have tried many ('refresh').trigger , ('create') and markup answers other members have suggested or I have seen on other posts. I am ...
1
vote
3answers
33 views

Dynamic binding using dictionaries in python?

I know how to do Fibonacci series recursively, that's pretty simple: def F(n): if n == 1 or n == 2: return 1 else: return k * F(n-2) + F(n - 1) I do know however that this is extremely ...
1
vote
1answer
21 views

Subclass communicate with Root Class

I am trying to make a dynamic Registration Form Structure. So based on the providing xml or data, it will generate a dynamic form. Here is the screen shot of my Class hierarchies. Here, Form class ...
2
votes
2answers
56 views

An unparenthesized arithmetic expression

An arithmetic expression can have many possible values Can someone help me?
0
votes
0answers
11 views

Shortest hamiltonian path with dynamic programming and bitmasking

I've just read an article about how to find the shortest hamiltonian path using dynamic programming here http://codeforces.com/blog/entry/337. While the pseudocode works, I do not understand why I ...
0
votes
1answer
11 views

Which the best way to pass values of dynamically created checkboxes and groupboxes

I am standing on a cross road with a doubt which way is the correct way. As you all are seeing the image Groupbox and CheckBoxes all are dynamically created. What I am confused about If user select ...
2
votes
3answers
100 views

Probability of death of a man moving n steps in a matrix

There is an island which is represented by square matrix nxn. A person on the island is standing at any given co-ordinates (x,y). He can move in any direction one step right, left, up, down on the ...
-1
votes
1answer
33 views

Android Linear Dynamic Overlap Issue

I hope someone can help as i have just bout pulled all my hair out with this one I am creating an app that allows the users to take an order from the customer. To do this I want a button that people ...
0
votes
1answer
29 views

Dynammic Programming

Can anyone explain to me the solution to the Longest Common Subsequence Problem? Specifically, the recurrence relation is if(xi=yj) then answer= maxL(i-1, j-1) +1 else answer=Max{MaxL(i-1, j), ...
0
votes
1answer
27 views

Rails: Test module defined by default in all modules but actually… not really

If I do the following in irb: module Useless ; end Useless.const_defined? 'Test' It obviously returns => false But when I do the same in any of my rails apps console, the answer is: => ...
4
votes
2answers
65 views

Checkers board - DP

Given a checkers board with 4 rows and N columns. each cell in the matrix has a value. Given 2N tokens that need to be placed on the board (each on a single cell) so the total sum of all the values ...
1
vote
1answer
85 views

Dynamic programming or backtracking?

My friend gave me the following problem: Input: A matrix of letters and a word. Output: The frequency of the word in the matrix assuming you can move left, right, up and down in the matrix to form ...
1
vote
1answer
45 views

Property file not reflecting the modified changes using Apache Commons Configuration

I am trying to explore Apache commons configuration to dynamically load the property file and do modification in the file and save it. I wrote a demo code for the same. Code Snippet package ...
1
vote
1answer
46 views

what is a good technique to output a solution using dynamic programming?

This question is specifically addressed towards the coin change problem. I know the algorithm to find the optimal number of coins used to find change for any amount, and I also understand it but what ...
3
votes
1answer
53 views

Given the pairwise edit distance of a and b and b and c, can we find the pairwise edit distance of a and c?

If we have three string a, b, c and we know ( or already calculated ) edit_distance(a,b) and edit_distance(b,c), can we efficiently calculate edit_distance(a,c) without actually comparing a and c. ...
2
votes
1answer
83 views

Dynamic Programming : The Zipper

Doing a little practice on dynamic programming problems in preparation for my final and I found this problem that stumped me. Zippers: Given three strings, you are to determine whether the third ...
0
votes
1answer
41 views

Dynamic Time Warping in Python, how to memoise a mutable matrix

I created a simple implementation of Dynamic Time Warping in Python, but feel like it is a bit of a hack. I implemented the recurrence relation (or, at least, I believe I did!), but because in my case ...
0
votes
4answers
75 views

Why this dynamic version of Fibonacci program is incredibly faster then this other? Prolog solutions

I am learning Prolog using SWI Prolog and I have a doubt about the followings two solutions of the Fibonacci number calculation program: The first one is this: fib(1,1). fib(2,1). fib(N,F) ...
6
votes
3answers
73 views

Finding all pairs of sequences that differ at exactly one position

I need a data structure representing a set of sequences (all of the same, known, length) with the following non-standard operation: Find two sequences in the set that differ at exactly one index. ...
-3
votes
0answers
57 views

C# Dynamic Programming Shortest Path [closed]

I need a dynamic code to calculate the shortest path from a specific node (start node) in a graph to a specific node (destinantion node)
1
vote
1answer
65 views

Dynamic programming aspect in Kadane's algorithm

Initialize: max_so_far = 0 max_ending_here = 0 Loop for each element of the array (a) max_ending_here = max_ending_here + a[i] (b) if(max_ending_here < 0) max_ending_here = ...
0
votes
1answer
40 views

Dynamic programing MPILOT

I am trying to solve a problem on spoj (MPILOT). I have understood that it's a dynamic programing problem,and i had tried it also but its giving me a wrong answer. my approach is like get the salary ...
1
vote
1answer
55 views

Coin change but with only 1 of each denomination of coin

The problem is: The algorithm I came up with is something like: pair<bool, bitmask>[n][A] memo; // memo[i][j].first will be true if its possible to // use up to i-th denomination for ...
0
votes
0answers
39 views

click event for dynamically generated ImageButtons

protected void GridView1_RowCommand(object sender, GridViewCommandEventArgs e) { if (e.CommandName == "cat") { SqlDataAdapter da = new SqlDataAdapter("select prodname,imgpath,price ...
0
votes
1answer
34 views

Converting recursion to dynamic & calculating its time complexity

I'm solving a code and my recursion function came to something like this-> int rec(n) { if(n>=(n/2+n/3+n/4)) { return n; } else { return rec(n/2) + rec(n/3) + rec(n/4); ...
1
vote
0answers
35 views

Boolean Mode Where Match Query with Dynamic Against Values, using PHP MySQLi Prepared Statements

I want to query mysql with a Where Match query using mysqli prepared statements. The problem is the Boolean Mode AGAINST values, normally: (+value1 +value2 +value IN BOOLEAN MODE) but the problem ...
1
vote
1answer
144 views

Is there a generic way to memoize in Scala?

I wanted to memoize this: def fib(n: Int) = if(n <= 1) 1 else fib(n-1) + fib(n-2) println(fib(100)) // times out So I wrote this and this surprisingly compiles and works (I am surprised because ...
-1
votes
2answers
253 views

How to solve “Manage your energy”? [closed]

I read an optimisation problem about energy in Google Code Jam. (The contest is over now, so it's okay to talk about it) You've got a very busy calendar today, full of important stuff to do. You ...
0
votes
0answers
119 views

A programming-language-friendly edit distance algorithm for building the next generation diff [closed]

I have been looking at ways to improve the diff highlighting for the diff I use the most, which is git diff --porcelain along with diff-highlight. I have found a lot of literature in the field of ...
0
votes
1answer
75 views

how to set dynamic time warping window adjustment?

I am using a DTW (dynamic time warping) code. does anybody happen to know how should I set the size of adjustment window ? (global path constraint)
-1
votes
2answers
118 views

Recursive dynamic programming approach for the travelling salesman [closed]

I was hoping someone could explain how the code on this page works: TSP-Recursive The pseudocode is hard to interpret, and the dynamic programming approach makes it particularly difficult to ...
-1
votes
2answers
125 views

Coin Row algorithm

I am stuck on this algorithm question and i am getting the concept but i am having a hard time visualizing an implementation of it. Coin-row problem There is a row of n coins whose values are some ...
-6
votes
0answers
66 views

Can't Determine a Dynamic Programming Algorithm Relation [closed]

I need to find the number of ways that a number, n can be written as the sum of powers of 2. For example: When n = 3, Combinations = (1, 1, 1) and (2, 1) # of Combinations = 2 The program is ...
3
votes
2answers
122 views

Is this Longest Common Subsequence Correct?

I just wrote this implementation to find out the length of the longest increasing subsequence using dynamic programming. So for input as [10, 22, 9, 33, 21, 50, 41, 60, 80] the LIS is 6 and one of the ...
0
votes
0answers
38 views

HyperString cum Dynamic Programming

String A is called “Super String” if and only if: A contains only letters a, b, c, d, e, f, g, h, i and j; For any i,j A[i] has lower ascii code than A[j] where 0 < i < j < length(A) Given a ...
0
votes
3answers
42 views

Java - Find the class name and the methods in that class also find the arguments available for the method

I have a package where i have to find all the class available in the package and methods available for the particular class and arguments for the methods available in the method. like : package ...
0
votes
1answer
137 views

Coin Change Bottom Up Dynamic Programming

http://uva.onlinejudge.org/external/6/674.html I'm trying to solve that problem. Note, though, that it's not the minimum coin change problem, it asks me for the different number of ways to make N ...
0
votes
1answer
42 views

VB.NET: Get dynamically value of constants

If have got the following definitions of constants: Protected Const Xsl As String = "Configuration.Xsl" Protected Const Form As String = "Settings.Form" Protected Const Ascx As String = ...
2
votes
1answer
95 views

how to apply dynamic programming in finding the minimum cost to create the tower in a field

you are given an N X M rectangular field with bottom left point at the origin. You have to construct a tower with square base in the field. There are trees in the field with associated cost to uproot ...
5
votes
3answers
237 views

How do I find the closest possible sum of an Array's elements to a particular value?

In Java, how should I find the closest (or equal) possible sum of an Array's elements to a particular value K? For example, for the array {19,23,41,5,40,36} and K=44, the closest possible sum is ...
-4
votes
1answer
58 views

Arrange Parties of Players Into Teams [closed]

For a multiplayer, team-based game, each Player can create a party and enter matchmaking with their group of party players. The server will then need to assign all the parties (for the sake of ...
0
votes
2answers
30 views

Dynamically choose which properties to get using Linq

I have an MVC application with a dynamic table on one of the pages, which the users defines how many columns the table has, the columns order and where to get the data from for each field. I have ...
10
votes
4answers
645 views

How to unlock all the chests in the treasure trove?

Heard the following problem in Google Code Jam. The competition has ended now, so it's okay to talk about it https://code.google.com/codejam/contest/2270488/dashboard#s=p3 Following an old map, ...
0
votes
0answers
27 views

Algorithm for Hyper String

I want to know about the algorithm to solve HyperString Problem. You can find the description at https://www.hackerrank.com/challenges/hyper-strings. Can it be solved by dynamic programming? Any ...
0
votes
0answers
54 views

Matrix chain product in CUDA

I am doing a matrix chain product in CUDA. I don't know how parallelism can be applied to that kind of problem. I went through some guides that say that we can apply parallelism in the i-loop of the ...
1
vote
1answer
82 views

Dynamically set the action name in MVC3 cshtml

I have an MVC3 project in which I create a dynamic jQuery DataTable. I added a custom attribute to my table called "GetDataFunc" which contains the action name on the controller side. I want to use ...
0
votes
0answers
18 views

LInqDataSource dynamically seting context Creating

I am Working on an Asp.Net Application in which i am Dynamically Creating LinqDataSource and using it in data Controls . my Question is how do i access Context_Creating event at back end. my code for ...

1 2 3 4 5 14