Tagged Questions
4
votes
2answers
304 views
Using dynamic programming in Haskell? [Warning: ProjectEuler 31 solution inside]
In solving projecteuler.net's problem #31 [SPOILERS AHEAD] (counting the number of ways to make 2£ with the British coins), I wanted to use dynamic programming. I started with OCaml, and wrote the ...
0
votes
1answer
256 views
Fallacy in Logic for Project Euler's Challenge 31
Perhaps I am misreading the question. For those of you who are unfamiliar with Project Euler's Problem 31, here is the problem:
Investigating combinations of English currency denominations.
...
3
votes
3answers
179 views
Can anyone explain me what is wrong with my dynamic programming approach to project euler 15?
I am learning dynamic programming and have attempted solve Problem 15 of Project Euler using dynamic programming.
Although I do know that the problem is solvable using binomial co-efficient, I wanted ...
4
votes
1answer
236 views
Dynamic programming with Data.Map in Haskell?
I am trying to implement a simple dp algorithm in Haskell (this is for the Collatz conjecture problem from Project Euler); here is the equivalent c++:
map<int,int> a;
int solve(int x) {
if ...
2
votes
2answers
157 views
Best Way to Save Results - Dynamic Programming
I am working to solve a problem that is a bit similar to Euler Problem 215. I think I can explain this without explaining the entire problem and/or my full approach to solving it.
Right now I'm ...
0
votes
1answer
221 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
513 views
Coin change algorithm always returning one
/**
*
* @param d
* currency divisions
* @param p
* target
* @return number of coins
*/
public static int change(int[] d, int p) {
int[] tempArray = new int[p*2]; // ...
15
votes
4answers
3k 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 ...
6
votes
1answer
314 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(:+)
...
1
vote
1answer
654 views
Dynamic Programming Recursion and a sprinkle of Memoization
I have this massive array of ints from 0-4 in this triangle. I am trying to learn dynamic programming with Ruby and would like some assistance in calculating the number of paths in the triangle that ...