Problem Description A hedger is an investor who takes steps to reduce the risks of investment by doing appropriate research and analysis of stocks. Assume that you are a hedger. Now you have been given some parameters based on which you have to analyze and pick the correct stocks. You have been assigned a fund that you have to manage in such a way that it should give maximum returns. According to your research you have a list of stocks for which you know the corresponding profit percentages that you can earn within a certain horizon. Being a hedger you don't want to put all your eggs in one basket. That's why you have decided the upper limit in terms of quantity that you will buy. Given number of stocks, the upper limit on quantity, the amount to be invested, the list of stock prices and list of profit percentages, calculate the maximum profit you can make. Note: All computation should be up to two digits after the decimal point. Constraints 0 <= A <= 10^6 1 <= K <= 100 1 <= N <= 10^4 Input First line contains three space separated integers N K A where N is number of stocks in Market, K is maximum quantity of any particular stock you can buy and A is capital amount you have. Second line contains N space separated decimals denoting the prices of stocks. Third line contains N space separated decimals denoting the profit percentages corresponding to the index of stock prices. Output Print the maximum profit that can be earned from the given amount, rounded to the nearest integer. Time Limit 1 Examples Example 1 Input 4 2 100 20 10 30 40 5 10 30 20 Output 26 Explanation Here, we can select only two stocks of any stocks that we choose to buy. We choose to buy stocks which are priced at 30 and 40 respectively. Before we exhaust our capital maximum profit that can be earned Profit=2*((30*30)/100) +1*((40*20)/100)=26 Example 2 Input 5 3 200 90 25.5 15.5 30.8 18.8 5 10 20 5.5 2.5 Output 20 Explanation Here, we can select only three stocks of any stocks that we choose to b program in python. I need code for this question
Answers
Answer:
Explanation:
Construct a quadrilateral ABCD in which sides AB = 4 cm, BC = 5 cm, CD = 4.5 cm,
= 5.5 cm and diagonal AC = 7.5 cm. Measure diagonal BD.
Answer:
def market(stocks,costs,profits,count,result):
maxindex=profits.index(max(profits))
maxval=costs[maxindex]
#print(" index ",maxindex," val ",maxval)
for i in range(int(stocks[1])):
if stocks[2]>count and stocks[2]>=count+maxval:
count=count+maxval
result=result+((maxval*profits[maxindex])/100)
else:
print(int(result))
return result
profits.pop(maxindex);costs.pop(maxindex)
#print(result)
market(stocks,costs,profits,count,result)
stock=re.findall(r"[-+]?\d*\.\d+|\d+",input())
cost=re.findall(r"[-+]?\d*\.\d+|\d+",input())
profit=re.findall(r"[-+]?\d*\.\d+|\d+",input())
stocks=[];costs=[];profits=[]
for i in stock:
stocks.append(float(i))
for i in cost:
costs.append(float(i))
for i in profit:
profits.append(float(i))
#print(stocks)
#print(costs)
#print(profits)
count=0;result=0
val=market(stocks,costs,profits,count,result)
Explanation: