Computer Science, asked by chandana3019, 7 months ago

Dr. Vishnu is opening a new world class hospital in a small town designed to be the first preference of the patients in the city. Hospital has N rooms of two types - with TV and without TV, with daily rates of R1 and R2 respectively. ... Hospital has a revenue target for the first year of operation.

Answers

Answered by poojan
1

Language used: Python programming

Program:

no_of_rooms=int(input())

with_ac, without_ac=map(int,input().split(' '))

estimation=int(input())  

month_days=[31,28,31,30,31,30,31,31,30,31,30,31]

money,total=0,0

per_month,total_year=[],[]

for i in range(len(month_days)):

  for j in range(1,month_days[i]+1):

      per_month.append((6-(i+1))*(6-(i+1))+abs(j-15))

  total_year.append(per_month)

  per_month=[]

for i in range(no_of_rooms+1):

  for j in total_year:

      for k in j:

          if(k>=no_of_rooms):

              t=no_of_rooms-i

              money=money+(i*with_ac+t*without_ac)

          else:

              h=no_of_rooms-i

              t=k-h

              if(t<=0):

                  money=money+(k*without_ac)

              else:

                  money=money+(t*with_ac+h*without_ac)

      total=total+money

      money=0

  if(total>=estimation):

      print(i)

      break

  else:

      total=0

else:

  print(no_of_rooms)

Sample Input:

20

1500 1000

7000000

Output:

14

As given in the question, "the number of patients on 1st Jan will be 39, on 2nd Jan will be 38 and so on. Considering there are only twenty rooms and rates of both type of rooms are 1500 and 1000 respectively, we will need 14 TV sets to get revenue of 7119500. With 13 TV sets, Total revenue will be less than 7000000."

Learn more:

1) Printing all the palindromes formed by a palindrome word.

brainly.in/question/19151384

2) Indentation is must in python. Know more about it at :

brainly.in/question/17731168

Similar questions