Submission #238501

# Submission time Handle Problem Language Result Execution time Memory
238501 2020-06-11T15:05:12 Z Autoratch Potatoes and fertilizers (LMIO19_bulves) C++14
0 / 100
5 ms 384 KB
#include <bits/stdc++.h>
using namespace std;

const int N = 5e5 + 1;

int n;
long long a[N],ans,s;
priority_queue<long long> q;
vector<long long> v;

int main()
{
    ios_base::sync_with_stdio(0); cin.tie(0);

    cin >> n;
    for(int i = 1;i <= n;i++)
    {
        int x,y;
        cin >> x >> y;
        a[i] = x-y+a[i-1];
        s+=a[i];
    }
    for(int i = 1;i <= n;i++)
    {
        long long pu = a[i];
        if(a[i]<0) ans-=a[i],pu = 0;
        if(a[i]>a[n]) ans+=a[i]-a[n],pu = a[n];
        q.push(pu),q.push(pu),q.pop();
    }
    while(!q.empty()) v.push_back(q.top()),q.pop();
    reverse(v.begin(),v.end());
    long long prev = 0;
    for(auto x : v) s-=(n--)*(x-prev),prev = x;
    cout << s+ans;
}
# Verdict Execution time Memory Grader output
1 Incorrect 5 ms 384 KB Output isn't correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 5 ms 384 KB Output isn't correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 5 ms 384 KB Output isn't correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 5 ms 384 KB Output isn't correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 5 ms 384 KB Output isn't correct
2 Halted 0 ms 0 KB -