Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Input: Standard Input; Output: Standard Output; Time Limit: 5 Seconds Fatima Cynara is a data analyst at Consolidated Stocks Ltd (CS). CS has had

imageimage

Input: Standard Input; Output: Standard Output; Time Limit: 5 Seconds Fatima Cynara is a data analyst at Consolidated Stocks Ltd (CS). CS has had some very good times as well as some bad ones, in particular around the dot-com bubble and the global recession in 2008. Fatima does trending analysis of the stock prices for CS, and she wants to determine the largest decline in stock prices over various time spans. For example, if over a span of time the stock prices were 19, 12, 13, 11, 20, and 14, then the largest decline would be 8 between the first and fourth price. If the last price had been 10 instead of 14, then the largest decline would have been 10 between the last two prices. Fatima has done some previous analyses and has found that the stock price over any period of time can be modelled reasonably accurately with the following equation: price(k) = p (sin(a k+b) + cos(c+k+d) +2) (1) where p, a, b, c, and d are constants. As Fatima has degree in financial mathematics, not computing, she would like you to write a program to determine the largest price decline over a given sequence of prices. Figure A.1 illustrates the price function for Sample Input 1. You have to consider the prices only for integer values of k. price(k) 2 3 4 5 7 8 9 10 k Figure 1: Sample Input 1. The largest decline occurs from the fourth to the seventh price. Input The input consists of a single line containing 6 integers p (1 p 1000), a, b, c, d (0 a, b, c, d < 1000) and n (1 n 106). The first 5 integers are described above. The sequence of stock prices to consider is price(1), price(2), ..., price(n). Output Display the maximum decline in the stock prices. If there is no decline, display the number 0. Your output should have an absolute or relative error of 6 decimal digits. Sample input 1 42 1 23 4 8 10 Sample output 1 104.855110 Sample input 2 100 7 615 998 801 3 Sample output 2 0.000000 Sample input 3 100 432 406 867 60 1000 Sample output 3 399.303813

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

International Marketing And Export Management

Authors: Gerald Albaum , Alexander Josiassen , Edwin Duerr

8th Edition

1292016922, 978-1292016924

More Books

Students also viewed these Programming questions