Hello so this is my first blog, I solved knapsack 1 but cant find any solution to solve V2 : https://atcoder.jp/contests/dp/tasks/dp_e
can any one help me ?
# | User | Rating |
---|---|---|
1 | tourist | 4009 |
2 | jiangly | 3823 |
3 | Benq | 3738 |
4 | Radewoosh | 3633 |
5 | jqdai0815 | 3620 |
6 | orzdevinwang | 3529 |
7 | ecnerwala | 3446 |
8 | Um_nik | 3396 |
9 | ksun48 | 3390 |
10 | gamegame | 3386 |
# | User | Contrib. |
---|---|---|
1 | cry | 167 |
2 | Um_nik | 163 |
3 | maomao90 | 162 |
3 | atcoder_official | 162 |
5 | adamant | 159 |
6 | -is-this-fft- | 158 |
7 | awoo | 157 |
8 | TheScrasse | 154 |
9 | Dominater069 | 153 |
9 | nor | 153 |
Hello so this is my first blog, I solved knapsack 1 but cant find any solution to solve V2 : https://atcoder.jp/contests/dp/tasks/dp_e
can any one help me ?
Name |
---|
first you have to find value per weight,then you sort them in descending order. then take one by one
This is a variant of the classic knapsack.
Notice that value is small (at most $$$10^5$$$ for all $$$100$$$ items), so instead of "what is the most value we can carry with weight $$$W$$$", you find "what is the least weight you need to carry to get a value of $$$V$$$".
Can it be done using top-down approach?
I don't see why not :)
The parameters are (the item we are considering, the value we have taken so far) for $$$100*10^5$$$ states. The choices for each state are still "take the item" and "ignore the item", just like in usual knapsack.
Maybe memory limit might be an issue, but I've never had problems with $$$10^7$$$ integer states.
Can't seem to figure it out! If I include the element, I add its weight. And when I don't include the element, I don't add its weight. I have to take the minimum of both the choices. What will be the base case? When I reach the end of the array, I simply return 0.
But it doesn't seem to work! I also seem to understand while writing that it won't work. Where is it wrong and how do I make it work?
Recurrence looks ok to me :) But there are some issues in
solve2
I think.int
only holds up to $$$2^{31} - 1$$$, so it should overflow.Also in this if else
Shouldn't it be more like this?
Fixed the solve2 method and overflow. Still doesn't give the correct answer. There's some issue in the recursion. Take case:
while calling recursion, at first, it goes on to include all elements, that is the first call, and then hits the base case from where it returns zero. Then the second call i.e. the not include case is called for the last element, from where it gets 0 from the base case. Now dp[n-1][maxV-valueOfLastElement]=0 because of the not include case. Isn't this wrong because it says to get value of [maxV-valueOfLastElement], we need only 0 weight. It didn't add up the weights of previously selected elements.
Yeah looks like we missed that part :)
I guess we're both messing up the definitions a bit here. Usually we define
dp(i, V)
as "first i items, we are allowed to take V more values". So the answer should bedp(N, initialV)
, and the recurrence actually goes backwards from $$$N$$$ to $$$0$$$ (and likewise, from $$$maxV$$$ to $$$0$$$).So you can implement the same recurrence but backwards (i.e. "if I include the element, I decrease $$$maxV$$$"), and do
You may consider iterating over sum of values rather than weights as per the constraints..So making the definition of dp[i] as minimum weight that can be taken with exactly i value..you can iterate on items and value(since constraints on value is low) My submission..https://atcoder.jp/contests/dp/submissions/10848260 ..Also you can refer to Youtube video by Errichto for the same
can you please tell why we say "min weight to achieve exactly this value V" and not min weight to achieve atleast V, or maybe even higher, i mean in 01 problem we dont keep W as an absolute goal, we take any weight less than W, so why are we asking for an exact goal for V? it might be a dumb ques but im new to dp so :(
MidoriFuse dark__forest thanks guys, that helped me
An alternative is Branch and Bound algorithm. Don't simply look at its theoretical time complexity. It works wonders in practice.
You can try Branch and Bound to run faster
It should be noted that the Branch and Bound algorithm doesn't always run fast. It's runtime depends on the accuracy and speed of the cost-estimation function. The better the cost-estimation function, the faster your answer will attain the optimum value. In this case, the cost-estimation function is both good and fast, so Branch and Bound works.
p.s. I don't think you understand how Branch and Bound works. It seems to me that your code uses DP instead of Branch and Bound.
Yes. Thank you for reminding me. Since I always adding Branch and Bound for faster in some specific problems, I forgot to notice that not at every time it work faster than normal approach
This helped me.
How to solve Knapsack-2 in single-d array? Anyone? This is my code and i am really stuck.
Please put codes in spoilers. Your code is incorrect because You do not know if $$$dp[j-values[i-1]]$$$ has already used your current object and you may use it again. To fix that, you may iterate $$$j$$$ in reverse, so you know for a fact $$$dp[j-value[i-1]]$$$ is untouched.
Refer to this solution in which I have explained Knapsnack 0-1 with all possible implementation 1. Recursive Memoisation 2. Tabulation: space O(n^2) 3. Tabulation: space O(n) 4. The special case when max capacity is large, done using tabulation.
Thanks
The important observation here is to notice that, the total sum of the values will be 1e5 at max.
Now the states for dp are index and value to be constructed. dp[i][val] represents the minimum weight needed to construct val with i indices.
Link to my Submission