Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

o pts) Projessor Dumbledore needs your help optimiang the Hogwarts budget. rou be given an array A of erchange rates for muggle money and wizard

image text in transcribedimage text in transcribedimage text in transcribed

o pts) Projessor Dumbledore needs your help optimiang the Hogwarts budget. rou be given an array A of erchange rates for muggle money and wizard coins, erpressed as integers. Your task is help Dumbledore marimize the payoff by buying at some time i and selling at a future time j > i, such that both Aj] Ai] and the corresponding difference of Alj] Ali] is as large as possible For erample, let A [8,9, 3, 4, 14, 12, 15, 19,7, 8, 12, 11]. If we buy stock at time i 2 Name ID SCI 3104, Algorithms roblem Set 1 Profs. Grochow & Layer Spring 2019, CU-Boulder with Ai3 and sell at time 7 with A)19, Hogwarts gets in income of 19-316 coins (a) Consider the pseudocode below that takes as input an array A of size n: makeWizardMoney (A): maxCoinsSoFar0 for i0 to length(A)-1 f for j = i+1 to length (A) { coins = A[j] -ALi] if (coins > maxCoinsSoFar) { maxCoinsSoFar = coins } return maxCoinsSoFar What is the running time complerity of the procedure above? Write your answer as a bound in terms of n (b) Erplain (1-2 sentences) under what conditions on the contents of A the makeWizardMoney algorithm will return 0 coins. (c) Dumbledore knows you know that makeWizardMoney is wildly inefficient. With a wink, he suggests writing a function to make a new array M of size n such that That is, Mi gives the minimum value in the subarray of Al0..i Write pseudocode to compute the array M. What is the running time complerity of your pseudocode? Write your answer as a bound in terms of n

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

Temporal Databases Research And Practice Lncs 1399

Authors: Opher Etzion ,Sushil Jajodia ,Suryanarayana Sripada

1st Edition

3540645195, 978-3540645191

More Books

Students also viewed these Databases questions

Question

What is a CA?

Answered: 1 week ago

Question

1. Describe the power of nonverbal communication

Answered: 1 week ago