VOOZH about

URL: https://www.geeksforgeeks.org/dsa/program-to-calculate-electricity-bill/

⇱ Program to calculate Electricity Bill - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

Program to calculate Electricity Bill

Last Updated : 4 Apr, 2023

Given an integer U denoting the amount of KWh units of electricity consumed, the task is to calculate the electricity bill with the help of the below charges: 
 

  • 1 to 100 units - 
  • 100 to 200 units - 
  • 200 to 300 units - 
  • above 300 units - 


Examples: 
 

Input: U = 250 
Output: 3500 
Explanation: 
Charge for the first 100 units - 10*100 = 1000 
Charge for the 100 to 200 units - 15*100 = 1500 
Charge for the 200 to 250 units - 20*50 = 1000 
Total Electricity Bill = 1000 + 1500 + 1000 = 3500
Input: U = 95 
Output: 950 
Explanation: 
Charge for the first 100 units - 10*95 = 950 
Total Electricity Bill = 950 
 


 


Approach 1: The idea is to identify the charge bar in which it falls and then calculate the bill according to the charges mentioned above. Below is the illustration of the steps: 
 

  • Check units consumed is less than equal to the 100, If yes then the total electricity bill will be:
     

  •  
  • Else if, check that units consumed is less than equal to the 200, if yes then total electricity bill will be:
     

  •  
  • Else if, check that units consumed is less than equal to the 300, if yes then total electricity bill will be:
     

  •  
  • Else if, check that units consumed greater than 300, if yes then total electricity bill will be:
     

  •  


Below is the implementation of the above approach: 
 


Output
3500

Time Complexity: O(1)

Auxiliary Space: O(1)

Approach 2 : In this approach, we can use an array to store the different rate of charges and their respective range of units. This approach can make the code more readable and easier to maintain. Here's how the code would look like:


Output
3500

Time Complexity : The time complexity of the calculateBill function is O(n), where n is the number of ranges of units and their respective charges. This is because the function uses a for loop to iterate through the range and charges arrays, and for each iteration, it performs a constant amount of work (calculating the bill based on the units consumed).

Since n is a constant value, the time complexity can be considered as O(1) in the best-case scenario. The function takes a constant amount of time to run, regardless of the number of units consumed.

Auxiliary Space : The space complexity of this code is O(n), where n is the number of rate of charges. This is because the program uses two arrays, charges and range, both of which have a size of n elements. The arrays take up 2 * n * sizeof(int) bytes of memory. In this case, n = 4, so the total memory occupied by the arrays is 2 * 4 * sizeof(int).

Comment
Article Tags:
Article Tags: