# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
951974 | GrandTiger1729 | Cake 3 (JOI19_cake3) | C++17 | 4073 ms | 6244 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
const long long INF = 1e18;
int main()
{
cin.tie(0)->sync_with_stdio(0);
int n, K;
cin >> n >> K;
vector<pair<int, int>> a(n);
for (int i = 0; i < n; i++)
{
cin >> a[i].second >> a[i].first;
}
sort(a.begin(), a.end());
long long ans = -INF;
for (int i = 0; i < n; i++)
{
long long cur = 0;
priority_queue<int, vector<int>, greater<>> pq;
for (int j = i; j < n; j++)
{
pq.push(a[j].second);
cur += a[j].second;
while (pq.size() > K)
{
cur -= pq.top();
pq.pop();
}
if (pq.size() == K)
{
ans = max(ans, cur - 2ll * (a[j].first - a[i].first));
}
}
}
cout << ans << '\n';
return 0;
}
컴파일 시 표준 에러 (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... |