# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
565928 | sofapuden | Potatoes and fertilizers (LMIO19_bulves) | C++14 | 204 ms | 11176 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include<bits/stdc++.h>
using namespace std;
typedef long long ll;
int main(){
ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0);
int n; cin >> n;
priority_queue<ll> pq;
ll dif = 0;
ll ans = 0;
for(int i = 0; i < n; ++i){
int a, b; cin >> a >> b;
dif+=a-b;
ans+=abs(dif);
pq.push(max(0ll,dif));
pq.push(max(0ll,dif));
pq.pop();
}
while(pq.size()){
auto x = pq.top(); pq.pop();
ans-=min(x,dif);
}
cout << ans << '\n';
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |