Problem Description
You have been tasked with writing a program for a popular bank that will automate all its incoming transactions (transfer, deposit, and withdraw). The bank has n
accounts numbered from 1
to n
. The initial balance of each account is stored in a 0-indexed integer array balance
, with the (i + 1)
th account having an initial balance of balance[i]
. You need to implement a Bank
class with methods to execute valid transactions.
Key Insights
- Each account is uniquely identified by its index, and transactions can only occur between valid accounts.
- A transaction is valid if:
- The account numbers are in the valid range.
- The withdrawing or transferring amount does not exceed the account's balance.
- The operations involve updating balances atomically to ensure correctness.
Space and Time Complexity
Time Complexity: O(1) for deposit and withdraw operations, O(1) for transfer operations (assuming direct access to balances). Space Complexity: O(n) for storing the balances of the accounts.
Solution
The solution involves creating a Bank
class that initializes with an array of balances. The class will have three methods: transfer
, deposit
, and withdraw
. Each method checks if the transaction is valid based on the conditions provided and updates the balances accordingly. The balance array allows for O(1) access and modification, making the operations efficient.