CSES - HIIT Open 2018 - Results
Submission details
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 results
testverdicttime
#1ACCEPTED0.13 sdetails
#2ACCEPTED0.18 sdetails
#3ACCEPTED0.17 sdetails
#4ACCEPTED0.25 sdetails
#5ACCEPTED0.25 sdetails
#6ACCEPTED0.01 sdetails
#7ACCEPTED0.01 sdetails
#8ACCEPTED0.01 sdetails
#9ACCEPTED0.12 sdetails

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