Non-Constructible Change


Non-Constructible Change[Easy]

  • Given an array of positive integers representing the values of coins in your possession, write a function that returns the minimum amount of change (the minimum sum of money)that you cannot create. The given coins can have any positive integer value and aren’t necessarily unique (i.e.,you can have multiple coins of the same value).

  • For example,if you’re given coins [1,2,5], the minimum amount of change that you can’t create is 4 If you’re given no coins,the minimum amount of change that you can’t create is 1.

Sample Input

coins=[5,7,1,1,2,3,22]

Sample Output

20

Hints

Hint 1
One approach to solve this problem is to attempt to create every single amount of change,starting at 1 and going up until you eventually can't create an amount.While this approach works,there is a better one.


Hint 2
Start by sorting the input array.Since you're trying to find the minimum amount of change that you can't create,it makes sense to consider the smallest coins first.


Hint 3
To understand the trick to this problem,consider the following example: coins [1,2,4].With this set of coins,we can create 1,2,3,4,5,6,7 cents worth of change.Now,if we were to add a coin of value 9 to this set,we would not be able to create 8 cents.However,if we were to add a coin of value 7 we would be able to create 8 cents,and we would also be able to create all values of change from 1 to 15 Why is this the case?


Hint 4
Create a variable to store the amount of change that you can currently create up to.Sort all of your coins,and loop through them in ascending order.At every iteration,compare the current coin to the amount of change that you can currently create up to.Here are the two scenarios that you'll encounter:
The coin value is greater than the amount of change that you can currently create plus
The coin value is smaller than or equal to the amount of change that you can currently create plus 1.
In the first scenario,you simply return the current amount of change that you can create plus 1,because you can't create that amount of change.In the second scenario,you add the value of the coin to the amount of change that you can currently create up to,and you continue iterating through the coins.
The reason for this is that,if you're in the second scenario,you can create all of the values of change that you can currently create plus the value of the coin that you just considered.If you're given coins [1,2],then you can make 1,2,3 cents.So if you add a coin of value 4 then you can make 4 1 cents,4 2 cents,and 4 3 cents.Thus,you can make up to cents.


Method 1

【 O(nlog(n)) time | O(1) space 】
import java.util.*;

class Program {

  public int nonConstructibleChange(int[] coins) {
    // Write your code here.
    Arrays.sort(coins);

    int currentCoin = 0;

    for(int i = 0; i < coins.length; i++){
      if(coins[i] > currentCoin + 1){
        return currentCoin + 1;
      }
      currentCoin += coins[i];
    }

    
    return  currentCoin + 1;
  }
}




Enjoy Reading This Article?

Here are some more articles you might like to read next:

  • 2379. Minimum Recolors to Get K Consecutive Black Blocks
  • 2471. Minimum Number of Operations to Sort a Binary Tree by Level
  • 1387. Sort Integers by The Power Value
  • 2090. K Radius Subarray Averages
  • 2545. Sort the Students by Their Kth Score