Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

You are living in Bangalore and want to travel from Bangalore to Ahmedabad and initially, you have M rupees. You are given the cost of

You are living in Bangalore and want to travel from Bangalore to
Ahmedabad and initially, you have M rupees. You are given the cost of a
Gold coin, a Silver coin and a Bronze coin in Bangalore and Ahmedabad
in arrays B and A respectively. You can buy at most one type of coin in
Bangalore according to your money and selt them in Ahmedabad. You
have to return the maximum money you can have in Ahmedabad.
Example 1:
Input:
M=8
B={1,1,2}
A={2,1,1}
Output: 16
Explanation:
You can buy 8 gold coins in Bangalore in 8 rupees and sell
them in Ahmedabad
and finally you have 16 rupees in Ahmedabad.
Example 2:
IUser function Template for python 3
class solution:
def MaxMoney (self, M, B, A):
# code here
Land Driven rode frids
image text in transcribed

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

The Temple Of Django Database Performance

Authors: Andrew Brookins

1st Edition

1734303700, 978-1734303704

More Books

Students also viewed these Databases questions

Question

Create a decision tree for Problem 12.

Answered: 1 week ago