Submission #870379

# Submission time Handle Problem Language Result Execution time Memory
870379 2023-11-07T14:15:26 Z DylanSmith Potatoes and fertilizers (LMIO19_bulves) C++17
0 / 100
0 ms 348 KB
#include <bits/stdc++.h>

using namespace std;

typedef long long ll;

#define pb push_back
#define sz(x) (int)x.size()
#define all(x) begin(x),end(x)
#define lb(x,y) lower_bound(all(x),y)-begin(x)

mt19937 rng;

void solve() {
    int N; cin >> N;
    priority_queue<ll> left, right;
    left.push(0);
    right.push(0);
    ll h = 0;
    ll lOff = 0, rOff = 0;
    for (int i = 0; i < N; i++) {
        int a, b; cin >> a >> b;
        rOff += a;
        lOff -= b;
        rOff -= b;
        if (i + 1 < N) {
            h += abs(-right.top() + rOff);
            if (0 < -right.top() + rOff) {
                left.push(-lOff);
                h -= (-right.top() + rOff) - (left.top() + lOff);
                right.push(-(left.top() + lOff - rOff));
                left.pop();
            } else {
                right.push(rOff);
            }
            if (0 < -right.top() + rOff) {
                left.push(-lOff);
            } else {
                right.push(rOff);
                left.push(-right.top() + rOff - lOff);
                right.pop();
            }
        }
    }
    cout << h << "\n";
}

int main() {
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
    rng = mt19937(chrono::steady_clock::now().time_since_epoch().count());

    solve();

    return 0;
}
# Verdict Execution time Memory Grader output
1 Incorrect 0 ms 348 KB Output isn't correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 0 ms 348 KB Output isn't correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 0 ms 348 KB Output isn't correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 0 ms 348 KB Output isn't correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 0 ms 348 KB Output isn't correct
2 Halted 0 ms 0 KB -