| # | Time | Username | Problem | Language | Result | Execution time | Memory | 
|---|---|---|---|---|---|---|---|
| 891423 | ClHg2 | Potatoes and fertilizers (LMIO19_bulves) | C++14 | 0 ms | 344 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>
#define EVAL(x) #x " = " << (x)
using std::cin;
using std::cout;
using i64 = int64_t;
constexpr auto inf = i64(1e12);
auto main() -> int {
  std::ios_base::sync_with_stdio(false);
  cin.tie(nullptr);
  auto n = 0;
  cin >> n;
  auto sum = i64{0}, ans = i64{0};
  auto heap = std::priority_queue<i64>{};
  for (auto i = 0; i < n; ++i) {
    auto x = 0, y = 0;
    cin >> x >> y;
    sum += x - y, ans += sum + inf;
    heap.emplace(sum), heap.emplace(sum), heap.pop();
  }
  for (auto i = 0; i < n; ++i) ans -= heap.top() + inf, heap.pop();
  cout << ans << "\n";
}
Compilation message (stderr)
| # | 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... | ||||
