# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
331352 | 2020-11-28T05:27:51 Z | Nson | Potatoes and fertilizers (LMIO19_bulves) | C++14 | 327 ms | 23920 KB |
#include <bits/stdc++.h> using namespace std; using ll = long long; int main() { int n; scanf("%d", &n); multiset<ll> s; ll m = 0, b = 0; // y = m * x + b auto apply_prefix_min = [&]() { while(!s.empty() and m > 0) { m--; b += *prev(s.end()); s.erase(prev(s.end())); } }; ll d = 0; for(int i = 0; i < n; i++) { int aa, bb; scanf("%d %d", &aa, &bb); aa -= bb; d += aa; apply_prefix_min(); if(d >= 0) { s.insert(d); s.insert(d); b -= d; m += 1; } else { m += 1; b -= d; } } while(!s.empty() and *prev(s.end()) > d) { m--; b += *prev(s.end()); s.erase(prev(s.end())); } printf("%lld\n", d * m + b); }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 1 ms | 364 KB | Output is correct |
2 | Correct | 2 ms | 492 KB | Output is correct |
3 | Correct | 1 ms | 364 KB | Output is correct |
4 | Correct | 24 ms | 748 KB | Output is correct |
5 | Correct | 50 ms | 2412 KB | Output is correct |
6 | Correct | 174 ms | 11700 KB | Output is correct |
7 | Correct | 112 ms | 364 KB | Output is correct |
8 | Correct | 296 ms | 23788 KB | Output is correct |
9 | Correct | 169 ms | 2816 KB | Output is correct |
10 | Correct | 314 ms | 23920 KB | Output is correct |
11 | Correct | 327 ms | 23916 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 1 ms | 364 KB | Output is correct |
2 | Correct | 2 ms | 492 KB | Output is correct |
3 | Correct | 1 ms | 364 KB | Output is correct |
4 | Correct | 24 ms | 748 KB | Output is correct |
5 | Correct | 50 ms | 2412 KB | Output is correct |
6 | Correct | 174 ms | 11700 KB | Output is correct |
7 | Correct | 112 ms | 364 KB | Output is correct |
8 | Correct | 296 ms | 23788 KB | Output is correct |
9 | Correct | 169 ms | 2816 KB | Output is correct |
10 | Correct | 314 ms | 23920 KB | Output is correct |
11 | Correct | 327 ms | 23916 KB | Output is correct |
12 | Incorrect | 70 ms | 4076 KB | Output isn't correct |
13 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 1 ms | 364 KB | Output is correct |
2 | Correct | 2 ms | 492 KB | Output is correct |
3 | Correct | 0 ms | 364 KB | Output is correct |
4 | Incorrect | 1 ms | 384 KB | Output isn't correct |
5 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 1 ms | 364 KB | Output is correct |
2 | Correct | 2 ms | 492 KB | Output is correct |
3 | Correct | 1 ms | 364 KB | Output is correct |
4 | Correct | 0 ms | 364 KB | Output is correct |
5 | Incorrect | 1 ms | 384 KB | Output isn't correct |
6 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 1 ms | 364 KB | Output is correct |
2 | Correct | 2 ms | 492 KB | Output is correct |
3 | Correct | 1 ms | 364 KB | Output is correct |
4 | Correct | 0 ms | 364 KB | Output is correct |
5 | Incorrect | 1 ms | 384 KB | Output isn't correct |
6 | Halted | 0 ms | 0 KB | - |