What further optimizations can be done to a Knapsack problem beyond a typical Dynamic Programming solution?
-
Given the weight of each item is at most 6% of the Capacity of the Knapsack. Can we do better than O(nC).
-
Answer:
There are efficient approximation algorithms that work very well in practice. Here's an example of a hill climbing like technique: For a fixed order you can add the items one by one as long as they fit in the knapsack (this is called First Fit). Then you can apply some mutations to the solution like trying to swap one element in and one out. You can apply this on lots of randomized orders and return the best solution.,
Cosmin Negruseri at Quora Visit the source
Other answers
Use a Python dictionary rather than a list of lists, because it's similarly efficient but can handle double indexing better. Also that way you can use the has_key method instead of having to initialize each entry with a flag value. For the nested loops: keep outer loop over value of items as each recursive call involves index number of items. Replace recursive calls by dictionary lookups.
Sameer Gupta
Related Q & A:
- What software i can use in making a video?except the movie maker?Best solution by Yahoo! Answers
- What type jobs can you get with a public administration degree?Best solution by worldwidelearn.com
- What pc games can you use with a xbox 360 wired controller?Best solution by Yahoo! Answers
- What can be done if a prospective employer cannot verify one of my past jobs in a employment background check?Best solution by Yahoo! Answers
- What is a marketing problem with a product/company that could be addressed by research?Best solution by Yahoo! Answers
Just Added Q & A:
- How many active mobile subscribers are there in China?Best solution by Quora
- How to find the right vacation?Best solution by bookit.com
- How To Make Your Own Primer?Best solution by thekrazycouponlady.com
- How do you get the domain & range?Best solution by ChaCha
- How do you open pop up blockers?Best solution by Yahoo! Answers
For every problem there is a solution! Proved by Solucija.
-
Got an issue and looking for advice?
-
Ask Solucija to search every corner of the Web for help.
-
Get workable solutions and helpful tips in a moment.
Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.