Task: | Buy Low, Sell High |
Sender: | HIIT AND RUN |
Submission time: | 2018-05-26 11:49:38 +0300 |
Language: | C++ |
Status: | READY |
Result: | ACCEPTED |
test | verdict | time | |
---|---|---|---|
#1 | ACCEPTED | 0.13 s | details |
#2 | ACCEPTED | 0.18 s | details |
#3 | ACCEPTED | 0.17 s | details |
#4 | ACCEPTED | 0.25 s | details |
#5 | ACCEPTED | 0.25 s | details |
#6 | ACCEPTED | 0.01 s | details |
#7 | ACCEPTED | 0.01 s | details |
#8 | ACCEPTED | 0.01 s | details |
#9 | ACCEPTED | 0.12 s | details |
Code
#include <bits/stdc++.h>using namespace std;typedef long long ll;vector<ll> v;int main() {int n;cin >> n;v.resize(n);for (int i = 0; i < n; i++) {ll x;cin >> x;v[i] = x;}ll minStart = v[0];ll maxProfitAnywhereBetween = 0;vector<ll> l(n);for (int i = 0; i < n; i++) {minStart = min(minStart, v[i]);ll profitIfSellHere = v[i] - minStart;maxProfitAnywhereBetween = max(maxProfitAnywhereBetween, profitIfSellHere);l[i] = maxProfitAnywhereBetween;}ll maxEnd = v[n-1];maxProfitAnywhereBetween = 0;vector<ll> r(n);for (int i=n-1; i >= 0; i--) {maxEnd = max(maxEnd, v[i]);ll profitIfBuyHere = maxEnd - v[i];maxProfitAnywhereBetween = max(maxProfitAnywhereBetween, profitIfBuyHere);r[i] = maxProfitAnywhereBetween;}ll ans = 0;for (int i =0; i < n; i++) {ans = max(ans, l[i] + r[i]);}cout << ans << endl;}
Test details
Test 1
Verdict: ACCEPTED
input |
---|
500000 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ... |
correct output |
---|
0 |
user output |
---|
0 |
Test 2
Verdict: ACCEPTED
input |
---|
500000 1 2 3 4 5 6 7 8 9 10 11 12 13 ... |
correct output |
---|
499999 |
user output |
---|
499999 |
Test 3
Verdict: ACCEPTED
input |
---|
500000 500000 499999 499998 499997 49... |
correct output |
---|
0 |
user output |
---|
0 |
Test 4
Verdict: ACCEPTED
input |
---|
500000 617752857 533265574 365848360 ... |
correct output |
---|
1999980408 |
user output |
---|
1999980408 |
Test 5
Verdict: ACCEPTED
input |
---|
500000 209620375 316066031 756114325 ... |
correct output |
---|
1999992655 |
user output |
---|
1999992655 |
Test 6
Verdict: ACCEPTED
input |
---|
1 1 |
correct output |
---|
0 |
user output |
---|
0 |
Test 7
Verdict: ACCEPTED
input |
---|
2 1 1 |
correct output |
---|
0 |
user output |
---|
0 |
Test 8
Verdict: ACCEPTED
input |
---|
2 2 1 |
correct output |
---|
0 |
user output |
---|
0 |
Test 9
Verdict: ACCEPTED
input |
---|
500000 1 1000000000 2 2 2 2 2 2 2 2 2... |
correct output |
---|
1999999998 |
user output |
---|
1999999998 |