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;
#define fi first
#define se second
int main() {
ios::sync_with_stdio(false);
int N;
cin >> N;
vector<int> V(N);
set<int> L;
for (int i = 0; i < N; i++) {
int a, b;
cin >> a >> b;
V[i] = a - b;
if (V[i] > 0) {
L.insert(i);
}
}
ll res = 0;
for (int i = 0; i < N; i++) {
// print(i, L);
auto itR = L.lower_bound(i);
if (itR == L.end() && itR != L.begin()) {
itR--;
}
auto itL = itR;
if (itL != L.begin()) {
itL--;
}
while (V[i] < 0) {
// print(i, V[i], L, *itL, *itR);
if (abs(i - *itL) < abs(i - *itR)) {
int m = min(-V[i], V[*itL]);
res += 1ll * m * abs(i - *itL);
V[i] += m;
V[*itL] -= m;
if (V[*itL] == 0) {
itL = L.erase(itL);
}
if (itL != L.begin()) {
itL--;
}
} else {
int m = min(-V[i], V[*itR]);
res += 1ll * m * abs(i - *itR);
V[i] += m;
V[*itR] -= m;
if (V[*itR] == 0) {
itR = L.erase(itR);
}
}
}
}
cout << res << endl;
return 0;
}
# | 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... |