# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
106177 | mzhao | Cake 3 (JOI19_cake3) | C++11 | 246 ms | 604 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
#ifdef DEBUG
#define D(x...) printf(x)
#else
#define D(x...)
#endif
#define MN 200100
#define x first
#define y second
using ll = long long;
int N, M;
pair<ll, ll> A[MN];
ll ans = -1e17;
bool cmp(pair<ll, ll> a, pair<ll, ll> b) {
if (a.y == b.y) return a.x > b.x;
return a.y > b.y;
}
int main() {
ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0);
cin >> N >> M;
assert(N <= 2000);
for (int i = 0; i < N; i++) {
cin >> A[i].x >> A[i].y;
}
sort(A, A+N, cmp);
ll pos = 0;
for (int i = M-1; i < N; i++) {
multiset<ll> cur;
ll tot = 0;
ll bestscore = -1e17;
ll bestpos;
for (int j = i; j >= 0; j--) {
tot += A[j].x;
cur.insert(A[j].x);
if (cur.size() > M) {
tot -= *cur.begin();
cur.erase(cur.begin());
}
if (cur.size() == M) {
ll score = tot-2*(A[j].y-A[i].y);
if (score > bestscore) {
bestscore = score;
bestpos = j;
}
}
}
assert(bestpos >= pos);
pos = bestpos;
ans = max(ans, bestscore);
}
cout << ans << "\n";
}
컴파일 시 표준 에러 (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... |