Skip to content

Commit 46cb1bb

Browse files
authored
Update Dynamic-Programming.md
1 parent b8d805d commit 46cb1bb

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

Notes/Dynamic-Programming.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -418,3 +418,21 @@ public int solve( int i, int j )
418418
return dp[ i ][ j ] = Math.max( ignore, take );
419419
}
420420
```
421+
422+
## Problems
423+
424+
- [The Knapsack Problem](http://www.spoj.com/problems/KNAPSACK/)
425+
- [Party Schedule](http://www.spoj.com/problems/PARTY/)
426+
- [Tri graphs](http://www.spoj.com/problems/ACPC10D/)
427+
- [Bytelandian gold coins](http://www.spoj.com/problems/COINS/)
428+
- [Coins Game](http://www.spoj.com/problems/MCOINS/)
429+
- [Feline Olympics - Mouseball](http://www.spoj.com/problems/MBALL/)
430+
- [Piggy-Bank](http://www.spoj.com/problems/PIGBANK/)
431+
- [Mixtures](http://www.spoj.com/problems/MIXTURES/)
432+
- [TV game](https://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&page=show_problem&problem=851)
433+
- [Fire! Fire!! Fire!!!](https://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&page=show_problem&problem=1184)
434+
- [Sweet and Sour Rock](http://www.spoj.com/problems/ROCK/)
435+
- [Rent your airplane and make money](http://www.spoj.com/problems/RENT/)
436+
- [Scuba diver](http://www.spoj.com/problems/SCUBADIV/)
437+
- [ACM (ACronymMaker)](http://www.spoj.com/problems/ACMAKER/)
438+
- [Two Ends](http://www.spoj.com/problems/TWENDS/)

0 commit comments

Comments
 (0)