Блог пользователя zeyad_alaa

Автор zeyad_alaa, история, 4 года назад, По-английски

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 ?

  • Проголосовать: нравится
  • +20
  • Проголосовать: не нравится

»
4 года назад, # |
Rev. 2   Проголосовать: нравится +2 Проголосовать: не нравится

first you have to find value per weight,then you sort them in descending order. then take one by one

»
4 года назад, # |
  Проголосовать: нравится +10 Проголосовать: не нравится

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$$$".

  • »
    »
    3 года назад, # ^ |
      Проголосовать: нравится 0 Проголосовать: не нравится

    Can it be done using top-down approach?

    • »
      »
      »
      3 года назад, # ^ |
        Проголосовать: нравится 0 Проголосовать: не нравится

      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.

      • »
        »
        »
        »
        3 года назад, # ^ |
          Проголосовать: нравится 0 Проголосовать: не нравится

        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.

        public static int solve2(int n, int w, int[][] arr, int maxV) {
        		dp=new int[n+1][maxV+1];
        		for(int[] row:dp) {
        			Arrays.fill(row, Integer.MAX_VALUE);
        			
        		}
        		
        		solveMemo(arr,0,0);
        		for(int i=maxV;i>-1;--i) {
        			if(dp[n-1][maxV]<=w) {
        				return i;
        			}
        		}
        		
        		return 0;
        
        	}
        	
        	static int[][] dp;
        	
        	public static int solveMemo(int[][] arr, int maxV,int idx) {
        		if(idx==arr.length) {
        			return 0;
        		}
        		
        		if(dp[idx][maxV]!=Integer.MAX_VALUE) {
        			return dp[idx][maxV];
        		}
        		
        		int include = arr[idx][0] + solveMemo(arr,maxV+arr[idx][1],idx+1);
        		int not = solveMemo(arr,maxV,idx+1);
        		
        		
        		return dp[idx][maxV]=Math.min(include, not);
        	}
        

        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?

        • »
          »
          »
          »
          »
          3 года назад, # ^ |
            Проголосовать: нравится 0 Проголосовать: не нравится

          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

          if(dp[n-1][maxV]<=w) {
          	return i;
          }
          

          Shouldn't it be more like this?

          if(dp[n-1][i]<=w) {
          	return i;
          }
          
          • »
            »
            »
            »
            »
            »
            3 года назад, # ^ |
            Rev. 2   Проголосовать: нравится 0 Проголосовать: не нравится

            Fixed the solve2 method and overflow. Still doesn't give the correct answer. There's some issue in the recursion. Take case:

            6 15
            6 5
            5 6
            6 4
            6 6
            3 5
            7 2
            

            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.

            • »
              »
              »
              »
              »
              »
              »
              3 года назад, # ^ |
              Rev. 2   Проголосовать: нравится 0 Проголосовать: не нравится

              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 be dp(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

              for(int i = maxV;i>-1;--i) {
              	if (solve(arr, N, i) <= w) {
              		return i;
              	}
              }
              
»
4 года назад, # |
  Проголосовать: нравится +2 Проголосовать: не нравится

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

  • »
    »
    2 месяца назад, # ^ |
      Проголосовать: нравится 0 Проголосовать: не нравится

    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 :(

»
4 года назад, # |
  Проголосовать: нравится +8 Проголосовать: не нравится

MidoriFuse dark__forest thanks guys, that helped me

»
4 года назад, # |
  Проголосовать: нравится +5 Проголосовать: не нравится

An alternative is Branch and Bound algorithm. Don't simply look at its theoretical time complexity. It works wonders in practice.

»
4 года назад, # |
Rev. 2   Проголосовать: нравится 0 Проголосовать: не нравится

You can try Branch and Bound to run faster

Spoiler
  • »
    »
    4 года назад, # ^ |
    Rev. 3   Проголосовать: нравится +4 Проголосовать: не нравится

    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.

    • »
      »
      »
      4 года назад, # ^ |
        Проголосовать: нравится 0 Проголосовать: не нравится

      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

»
4 года назад, # |
  Проголосовать: нравится 0 Проголосовать: не нравится

This helped me.

»
4 года назад, # |
Rev. 2   Проголосовать: нравится 0 Проголосовать: не нравится

How to solve Knapsack-2 in single-d array? Anyone? This is my code and i am really stuck.

#include <iostream>
#include<vector>
using namespace std;

int main() {
   int  n,w,gmax=0;
   cin>>n>>w;
   vector<int> weights(n,0),values(n,0);

   for(int i=0;i<n;i++)
    cin>>weights[i]>>values[i];

   vector<long long int> dp(100001);

   for(int i=0;i<=n;i++)
   {
       for(int j=0;j<100001;j++)
       {

           if(j==0)
           {
               dp[j]=0;
               continue;
           }

           if(i==0)
           {
               dp[j]=w+1;
               continue;
           }

           if(values[i-1]<=j)
           {
               dp[j]=min(weights[i-1]+dp[j-values[i-1]],dp[j]);
           }
       }
   }
    
    for(int j=0;j<100001;j++)
       {
           if(dp[j]<=w)
            gmax=max(gmax,j);
       }

   cout<<gmax;

   return 0;
}

  • »
    »
    4 года назад, # ^ |
    Rev. 2   Проголосовать: нравится 0 Проголосовать: не нравится

    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.

»
4 года назад, # |
  Проголосовать: нравится 0 Проголосовать: не нравится

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.

»
7 месяцев назад, # |
  Проголосовать: нравится 0 Проголосовать: не нравится

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.

Click to view solution

Link to my Submission