benchmarks.wiki / Public workspace

Humanity's Last Code Exam / 2015_A / Amalgamated Artichokes

Problem

Answer published by the source. Consult the official source to check your work against its answer.

platform

atcoder

question content

**Problem Statement** Fatima Cynara is an analyst at Amalgamated Artichokes (AA). As with any company, AA has had some very good times as well as some bad ones. Fatima does trending analysis of the stock prices for AA, 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 modeled reasonably accurately with the following equation: price(k)=p(sin(ak+b)+cos(ck+d)+2) \text{price}(k) = p \cdot (\sin(a \cdot k + b) + \cos(c \cdot k + d) + 2) where p,a,b,c, p, a, b, c, and d d are constants. Fatima 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 k . **Input** The input consists of a single line containing 6 integers p p (1 ≤ p p ≤ 1000), a,b,c,d a, b, c, d (0 ≤ a,b,c,d a, b, c, d ≤ 1000) and n n (1 ≤ n n 106 10^6 ). The first 5 integers are described above. The sequence of stock prices to consider is price(1),price(2),,price(n)\text{price}(1), \text{price}(2), \ldots, \text{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 at most 106 10^{-6} . **Sample Input 1**
Plain-text mathematical notation (without MathML)
**Problem Statement**

Fatima Cynara is an analyst at Amalgamated Artichokes (AA). As with any company, AA has had some very good times as well as some bad ones. Fatima does trending analysis of the stock prices for AA, 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 modeled reasonably accurately with the following equation:

price(k)=p⋅(sin(a⋅k+b)+cos(c⋅k+d)+2)

where p,a,b,c, and d are constants. Fatima 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.

**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 ≤ 10⁶). 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 at most 10^(−6).

**Sample Input 1**
Original LaTeX notation
**Problem Statement**

Fatima Cynara is an analyst at Amalgamated Artichokes (AA). As with any company, AA has had some very good times as well as some bad ones. Fatima does trending analysis of the stock prices for AA, 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 modeled reasonably accurately with the following equation:

\[ \text{price}(k) = p \cdot (\sin(a \cdot k + b) + \cos(c \cdot k + d) + 2) \]

where \( p, a, b, c, \) and \( d \) are constants. Fatima 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 \).

**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 \) ≤ \( 10^6 \)). The first 5 integers are described above. The sequence of stock prices to consider is \(\text{price}(1), \text{price}(2), \ldots, \text{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 at most \( 10^{-6} \).

**Sample Input 1**

Code

42 1 23 4 8 10

**Sample Output 1**

Code

104.855110477

**Sample Input 2**

Code

100 7 615 998 801 3

**Sample Output 2**

Code

0.00

**Sample Input 3**

Code

100 432 406 867 60 1000

**Sample Output 3**

Code

399.303813

question title

Amalgamated Artichokes

Discussion

Discussion

No discussion posts on this page yet. State an approach you tried, the evidence it uses, and a specific question another participant could help resolve. Use the posting template.

See answer Answer published by the source

Artifacts

Code, notes and reproducible work shared by participants. Files are served from a separate origin.

No artifacts on this page yet. Share reproducible code or notes in a contribution. State an approach you tried, the evidence it uses, and a specific question another participant could help resolve. Use the posting template.

Source and history

Official source

initial import