Given a weighting scale and an array of different positive weights where we have an infinite supply of each weight. Our task is to put weights on left and right pans of scale one by one in such a way that pans move to that side where weight is put i.e. each time, pans of scale moves to alternate sides.
- We are given another integer ‘steps’, times which we need to perform this operation.
- Another constraint is that we can’t put same weight consecutively i.e. if weight w is taken then in next step while putting the weight on opposite pan we can’t take w again.
Examples:
Let weight array is [7, 11] and steps = 3 then 7, 11, 7 is the sequence in which weights should be kept in order to move scale alternatively. Let another weight array is [2, 3, 5, 6] and steps = 10 then, 3, 2, 3, 5, 6, 5, 3, 2, 3 is the sequence in which weights should be kept in order to move scale alternatively.
This problem can be solved by doing DFS among scale states.
- We traverse among various DFS states for the solution where each DFS state will correspond to actual difference value between left and right pans and current step count.
- Instead of storing weights of both pans, we just store the difference residue value and each time chosen weight value should be greater than this difference and shouldn’t be equal to previously chosen value of weight.
- If it is, then we call the DFS method recursively with new difference value and one more step.
Please see below code for better understanding,
C++
// C++ program to print weights for alternating// the weighting scale#include <bits/stdc++.h>usingnamespacestd;// DFS method to traverse among states of weighting scalesbooldfs(intresidue,intcurStep,intwt[],intarr[],intN,intsteps){// If we reach to more than required steps,// return trueif(curStep > steps)returntrue;// Try all possible weights and choose one which// returns 1 afterwardsfor(inti = 0; i < N; i++){/* Try this weight only if it is greater thancurrent residueand not same as previous chosenweight */if(arr[i] > residue && arr[i] != wt[curStep - 1]){// assign this weight to array and recur for// next statewt[curStep] = arr[i];if(dfs(arr[i] - residue, curStep + 1, wt,arr, N, steps))returntrue;}}// if any weight is not possible, return falsereturnfalse;}// method prints weights for alternating scale and if// not possible prints 'not possible'voidprintWeightsOnScale(intarr[],intN,intsteps){intwt[steps];// call dfs with current residue as 0 and current// steps as 0if(dfs(0, 0, wt, arr, N, steps)){for(inti = 0; i < steps; i++)cout << wt[i] <<" ";cout << endl;}elsecout <<"Not possible\n";}// Driver code to test above methodsintmain(){intarr[] = {2, 3, 5, 6};intN =sizeof(arr) /sizeof(int);intsteps = 10;printWeightsOnScale(arr, N, steps);return0;}Java
// Java program to print weights for alternating// the weighting scaleclassGFG{// DFS method to traverse among// states of weighting scalesstaticbooleandfs(intresidue,intcurStep,int[] wt,int[] arr,intN,intsteps){// If we reach to more than required steps,// return trueif(curStep >= steps)returntrue;// Try all possible weights and// choose one which returns 1 afterwardsfor(inti =0; i < N; i++){/** Try this weight only if it is* greater than current residue* and not same as previous chosen weight*/if(curStep -1<0||(arr[i] > residue &&arr[i] != wt[curStep -1])){// assign this weight to array and// recur for next statewt[curStep] = arr[i];if(dfs(arr[i] - residue, curStep +1,wt, arr, N, steps))returntrue;}}// if any weight is not possible,// return falsereturnfalse;}// method prints weights for alternating scale// and if not possible prints 'not possible'staticvoidprintWeightOnScale(int[] arr,intN,intsteps){int[] wt =newint[steps];// call dfs with current residue as 0// and current steps as 0if(dfs(0,0, wt, arr, N, steps)){for(inti =0; i < steps; i++)System.out.print(wt[i] +" ");System.out.println();}elseSystem.out.println("Not Possible");}// Driver Codepublicstaticvoidmain(String[] args){int[] arr = {2,3,5,6};intN = arr.length;intsteps =10;printWeightOnScale(arr, N, steps);}}// This code is contributed by// sanjeev2552Python3
# Python3 program to print weights for# alternating the weighting scale# DFS method to traverse among states# of weighting scalesdefdfs(residue, curStep, wt, arr, N, steps):# If we reach to more than required# steps, return trueif(curStep >=steps):returnTrue# Try all possible weights and choose# one which returns 1 afterwardsforiinrange(N):# Try this weight only if it is greater# than current residueand not same as# previous chosen weightif(arr[i] > residueandarr[i] !=wt[curStep-1]):# assign this weight to array and# recur for next statewt[curStep]=arr[i]if(dfs(arr[i]-residue, curStep+1,wt, arr, N, steps)):returnTrue# if any weight is not possible,# return falsereturnFalse# method prints weights for alternating scale# and if not possible prints 'not possible'defprintWeightsOnScale(arr, N, steps):wt=[0]*(steps)# call dfs with current residue as 0# and current steps as 0if(dfs(0,0, wt, arr, N, steps)):foriinrange(steps):print(wt[i], end=" ")else:print("Not possible")# Driver Codeif__name__=='__main__':arr=[2,3,5,6]N=len(arr)steps=10printWeightsOnScale(arr, N, steps)# This code is contributed by PranchalK
Output:2 3 2 3 5 6 5 3 2 3
This article is contributed by Utkarsh Trivedi. If you like GeeksforGeeks and would like to contribute, you can also write an article using contribute.geeksforgeeks.org or mail your article to contribute@geeksforgeeks.org. See your article appearing on the GeeksforGeeks main page and help other Geeks.
Please write comments if you find anything incorrect, or you want to share more information about the topic discussed above.



