Skip to content

Commit 6fcc570

Browse files
arti97t2013anurag
authored andcommitted
Added icpc_problems (#734)
* icpc * Update Readme.md
1 parent be4b02c commit 6fcc570

File tree

2 files changed

+63
-0
lines changed

2 files changed

+63
-0
lines changed

icpc_problems/2015/Readme.md

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
# ACM ICPC 2015 Problems and Solutions
2+
3+
## Problem A: Amalgamated Artichokes
4+
5+
Time Limit: 5 seconds
6+
7+
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.
8+
9+
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:
10+
##### price(k) = p · (sin(a · k + b) + cos(c · k + d) + 2)
11+
12+
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.You have to consider the prices only for integer values of k.
13+
14+
### Input
15+
16+
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 price(1), price(2), . . . , price(n).
17+
18+
### Output
19+
20+
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.
21+
22+
23+
| Sample Input 1 | Sample Output 1|
24+
| ------------- |:-------------:|
25+
| 42 1 23 4 8 10 | 104.855110477 |
26+
27+
| Sample Input 2 | Sample Output 2|
28+
| ------------- |:-------------:|
29+
| 100 7 615 998 801 3 | 0.00 |
30+
31+
| Sample Input 3 | Sample Output 3|
32+
| ------------- |:-------------:|
33+
| 100 432 406 867 60 1000| 399.303813|
34+
35+
36+
### Solution
37+
38+
Simple loop execution; Maintain maximum price encountered so far.

icpc_problems/2015/problemA.cc

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
#include <algorithm>
2+
#include <cmath>
3+
#include <cstdio>
4+
#include <iostream>
5+
#include <vector>
6+
using namespace std;
7+
8+
main() {
9+
int p, a, b, c, d, n;
10+
while (cin >> p >> a >> b >> c >> d >> n) {
11+
vector<double> v(n+1);
12+
for (double i = 1; i <= n; i++) {
13+
v[i] = p*(sin(a*i + b) + cos(c*i + d) + 2);
14+
}
15+
double mx = v[1], ret = 0.0;
16+
for (int i = 1; i <= n; i++) {
17+
if (v[i] > mx) {
18+
mx = v[i];
19+
} else {
20+
ret = max(ret, mx-v[i]);
21+
}
22+
}
23+
printf("%.6lf\n", ret);
24+
}
25+
}

0 commit comments

Comments
 (0)