Problem Description
There is an ATM machine that stores banknotes of 5 denominations: 20, 50, 100, 200, and 500 dollars. Initially, the ATM is empty. The user can use the machine to deposit or withdraw any amount of money. The machine prioritizes using banknotes of larger values when withdrawing. If the machine cannot fulfill a withdrawal request with the available banknotes, it should return [-1].
Key Insights
- The ATM should prioritize larger denominations for withdrawals.
- The machine must ensure that it does not partially fulfill a withdrawal request (i.e., if it can't fulfill the entire amount, it shouldn't withdraw anything).
- The operations must be efficient given the constraints on the number of calls and the range of values.
Space and Time Complexity
Time Complexity: O(1) for both deposit and withdraw operations since they involve a fixed number of banknote types (5). Space Complexity: O(1) as we are only storing a fixed number of banknote counts.
Solution
To solve this problem, we will use an array to represent the count of each banknote denomination. The deposit
method will update this array according to the number of banknotes deposited. The withdraw
method will attempt to fulfill the withdrawal request starting from the highest denomination down to the lowest. If it cannot fulfill the request in entirety, it will return [-1]. This greedy approach ensures that we always try to use the largest possible banknotes first.